-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.07 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "bewater",
"version": "0.2.1",
"description": "A PostCSS plugin that helps you automatically apply `clamp()` to values to achieve a fluid design efficently.",
"main": "./dist/index.cjs.js",
"files": [
"src/",
"dist/"
],
"dependencies": {
"postcss-sparrow": "^1.0.2",
"postcss-sparrow-props-filter": "^0.1.5",
"postcss-sparrow-units-filter": "^0.1.6",
"postcss-sparrow-values-filter": "^0.1.3",
"ramda": "^0.27.1",
"sanctuary": "^3.1.0"
},
"peerDependencies": {
"postcss": "^8.1.0"
},
"devDependencies": {
"postcss": "^8.1.0",
"eslint-plugin-ramda": "2.5.1",
"@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",
"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-standard": "4.0.1",
"esm": "3.2.25",
"mocha": "8.1.3",
"nyc": "15.1.0",
"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"
},
"scripts": {
"prepublish": "npm run build",
"test": "npx mocha --recursive './test/**/*.js' --require esm",
"build": "NODE_ENV=production npx rollup -c;"
},
"repository": {
"type": "git",
"url": "git+https://github.com/winston0410/bewater.git"
},
"keywords": [
"PostCSS",
"postcss plugin",
"PostCSS-Sparrow",
"clamp"
],
"author": "Hugo Sum",
"license": "MIT",
"bugs": {
"url": "https://github.com/winston0410/postcss-declarations-bundler/issues"
},
"homepage": "https://github.com/winston0410/postcss-declarations-bundler#readme",
"eslintConfig": {
"extends": "eslint-config-postcss"
}
}