-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.64 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "postcss-sparrow",
"version": "1.0.2",
"description": "A PostCSS plugin that helps you remove, replace, append or prepend CSS declarations without the need of writing another PostCSS plugin.",
"main": "src/index.js",
"keywords": [
"postcss",
"css",
"postcss-plugin"
],
"files": [
"dist/"
],
"scripts": {
"prepublish": "npm run build",
"test": "npx nyc npx mocha",
"build": "npx rollup -c;"
},
"author": "Hugo Sum <[email protected]>",
"license": "MIT",
"repository": "winston0410/sparrow",
"peerDependencies": {
"postcss": "^8.1.0"
},
"devDependencies": {
"postcss": "^8.1.0",
"@logux/eslint-config": "^40.0.5",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"chai": "^4.2.0",
"chai-arrays": "^2.2.0",
"chai-match": "^1.1.1",
"chalk": "^4.1.0",
"eslint": "^7.10.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-chai-expect": "^2.2.0",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-const-immutable": "^2.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-ramda": "^2.5.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"ramda": "^0.27.1",
"rollup": "^2.28.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^9.0.3"
},
"eslintConfig": {
"extends": "eslint-config-postcss"
},
"engines": {
"node": ">=8.0.0"
}
}