forked from turboext/css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.01 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
{
"name": "css",
"version": "1.0.0",
"description": "Turbo extensions",
"main": "index.js",
"scripts": {
"start": "node server.js",
"public": "PUBLIC=true node server",
"test": "npm run lint && npm run unit && npm run build",
"unit": "mocha",
"lint": "npm run lint:style && npm run lint:hosts && npm run lint:size && npm run lint:js",
"lint:style": "stylelint hosts/**/style.*",
"lint:hosts": "node ./cli/host-lint",
"lint:size": "node ./cli/size-lint",
"lint:js": "eslint .",
"minify": "node ./cli/minifier.js",
"gzip": "node ./cli/gzip.js",
"build": "node ./cli/build.js",
"clean": "find css -name '*.min.css' -o -name '*.css.gz' | xargs rm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/turboext/css.git"
},
"author": "sbmaxx",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/turboext/css/issues"
},
"homepage": "https://github.com/turboext/css#readme",
"dependencies": {
"async": "^2.6.1",
"autoprefixer": "8.3.0",
"chalk": "2.4.1",
"compression": "1.7.2",
"cssnano": "3.10.0",
"express": "4.16.3",
"fs-extra": "5.0.0",
"glob": "7.1.2",
"js-yaml": "3.11.0",
"ngrok": "^3.0.1",
"postcss-calc": "6.0.1",
"postcss-cli": "5.0.0",
"postcss-import": "11.1.0",
"postcss-nested": "3.0.0",
"postcss-reporter": "5.0.0",
"postcss-scss": "1.0.5",
"postcss-url": "7.3.2",
"precss": "3.1.2",
"request": "2.85.0",
"request-promise": "4.2.2",
"stylelint": "9.2.0",
"stylelint-config-recommended-scss": "3.2.0",
"stylelint-csstree-validator": "1.2.2",
"stylelint-declaration-use-variable": "1.6.1",
"stylelint-high-performance-animation": "1.0.0",
"stylelint-order": "0.8.1",
"stylelint-scss": "3.1.0"
},
"devDependencies": {
"@types/fs-extra": "5.0.2",
"chai": "4.1.2",
"eslint": "4.19.1",
"mocha": "5.1.1",
"chokidar": "2.0.3",
"express-livereload": "0.0.24",
"nodemon": "1.17.4",
"tiny-lr": "1.1.1"
}
}