-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.31 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
{
"name": "css-razor",
"version": "2.4.4",
"description": "Remove unused selectors from CSS efficiently",
"main": "index.js",
"bin": {
"css-razor": "./cli.js"
},
"scripts": {
"lint": "standard --globals=fetch",
"test:unit": "lab ./index.test.js --ignore fetch,Response,Headers,Request,Base64",
"test": "npm run lint && npm run test:unit",
"v-patch": "npm version patch && git push --tags && npm publish && git push",
"v-minor": "npm version minor && git push --tags && npm publish && git push",
"v-major": "npm version major && git push --tags && npm publish && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tscanlin/css-razor.git"
},
"keywords": [
"css",
"razor",
"strip",
"cut",
"slim",
"cheerio",
"postcss",
"postcss-runner"
],
"author": "Tim Scanlin",
"license": "MIT",
"bugs": {
"url": "https://github.com/tscanlin/css-razor/issues"
},
"homepage": "https://github.com/tscanlin/css-razor#readme",
"dependencies": {
"cheerio": "^0.22.0",
"es6-promise": "^4.1.0",
"globby": "^6.1.0",
"isomorphic-fetch": "^2.2.1",
"mkdirp": "^0.5.1",
"postcss": "^5.2.13",
"yargs": "^6.6.0"
},
"devDependencies": {
"code": "^4.0.0",
"lab": "^12.1.0",
"standard": "^10.0.2"
}
}