-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
{
"name": "cssa",
"version": "1.6.3",
"description": "CSS audit tool",
"bin": [
"bin/cssa",
"bin/cssa-legacy"
],
"scripts": {
"prepublish": "npm run clean && npm run check && npm run build",
"build": "rollup -c && chmod +x bin/cssa bin/cssa-legacy",
"postbuild": "BABEL_ENV=test mocha test/functional",
"lint": "eslint src test",
"test": "BABEL_ENV=test mocha test/unit",
"check": "npm run lint && npm run test",
"clean": "rm -rf bin/"
},
"keywords": [
"css",
"audit",
"static analysis"
],
"author": "Charles Hymans",
"license": "GPL-3.0",
"bugs": "https://github.com/c8y3/cssa/issues",
"repository": {
"type": "git",
"url": "https://github.com/c8y3/cssa.git"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-check-es2015-constants": "^6.22.0",
"babel-plugin-transform-es2015-block-scoping": "^6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-register": "^6.26.0",
"babel-root-slash-import": "^1.1.0",
"chai": "^4.1.2",
"eslint": "^4.15.0",
"fs-extra": "^5.0.0",
"mocha": "^4.0.1",
"rollup": "^0.52.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-root-import": "^0.2.2",
"sinon": "^4.4.2",
"sinon-register": "^1.0.0"
},
"dependencies": {
"css": "^2.2.1",
"es6-shim": "^0.35.3",
"stargs": "^5.0.0"
}
}