-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.52 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
{
"name": "postcss-stack",
"version": "5.0.0",
"description": "A better way to manage z-indexes",
"author": "Philip Bordallo",
"license": "MIT",
"repository": "philipbordallo/postcss-stack",
"homepage": "https://github.com/philipbordallo/postcss-stack#readme",
"bugs": "https://github.com/philipbordallo/postcss-stack/issues",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"z-index",
"zindex",
"stack",
"stacks",
"stacking"
],
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"files": [
"dist/"
],
"engines": {
"node": ">=12.0.0"
},
"eslintConfig": {
"extends": "./configs/eslint.config.js"
},
"babel": {
"presets": [
"./configs/babel.config.js"
]
},
"browserslist": [
"node 14",
"node 12"
],
"scripts": {
"prepublishOnly": "npm test",
"build": "rollup --config configs/rollup.config.js --silent",
"lint": "eslint ./src/",
"pretest": "npm run build && npm run lint",
"test": "postcss-tape --config configs/config.tape.js --plugin dist/index.cjs.js --fixtures tests",
"preversion": "npm run test"
},
"dependencies": {
"postcss-values-parser": "^6.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.4",
"@philipbordallo/eslint-config": "^4.0.1",
"eslint": "^7.32.0",
"postcss": "^8.3.6",
"postcss-tape": "^6.0.1",
"rollup": "^2.56.3",
"rollup-plugin-babel": "^4.4.0"
},
"peerDependencies": {
"postcss": "^8.3.6"
}
}