-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 892 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 892 Bytes
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
{
"name": "sheetify-cssnext",
"version": "3.0.0",
"main": "index.js",
"description": "cssnext transform for sheetify",
"scripts": {
"deps": "dependency-check . && dependency-check . --extra --no-dev",
"test": "standard && npm run deps && NODE_ENV=test node test",
"test:cov": "standard && npm run deps && NODE_ENV=test nyc node test.js"
},
"repository": "stackcss/sheetify-cssnext",
"keywords": [
"sheetify",
"cssnext",
"css",
"preload",
"compile",
"polyfill",
"shim",
"stream",
"minimal"
],
"license": "MIT",
"dependencies": {
"postcss": "^7.0.17",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.7.0",
"xtend": "^4.0.0"
},
"devDependencies": {
"dependency-check": "^2.5.1",
"nyc": "^14.1.1",
"standard": "^14.3.4",
"tape": "^5.0.1"
},
"engines": {
"node": ">= 8"
}
}