-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "panto-transformer-clean-css",
"version": "0.1.0",
"description": "CleanCss transformer for panto",
"main": "index.js",
"scripts": {
"test": "eslint src index.js && ./node_modules/.bin/mocha",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"prepublish": "npm run test"
},
"pre-commit": "test",
"repository": {
"type": "git",
"url": "https://github.com/pantojs/panto-transformer-clean-css.git"
},
"keywords": [
"panto",
"clean-css",
"transformer"
],
"engines": {
"node": ">=6.0.0"
},
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pantojs/panto-transformer-clean-css/issues"
},
"homepage": "https://github.com/pantojs/panto-transformer-clean-css",
"dependencies": {
"clean-css": "^3.4.19",
"panto-transformer": "^0.2.4"
},
"devDependencies": {
"panto": "0.0.32",
"coveralls": "^2.11.9",
"mocha": "^3.0.2",
"mocha-lcov-reporter": "^1.2.0",
"pre-commit": "^1.1.3"
}
}