-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
53 lines (53 loc) · 1.41 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
{
"name": "panto",
"version": "0.2.1",
"description": "PantoJS is an extreme flexible file transforming engine",
"main": "index.js",
"scripts": {
"test": "eslint src test && npm run mocha",
"mocha": "./node_modules/.bin/mocha --harmony",
"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"
},
"precommit": "test",
"repository": {
"type": "git",
"url": "git+https://github.com/pantojs/panto.git"
},
"keywords": [
"panto",
"build",
"task",
"runner",
"tool",
"transform"
],
"engines": {
"node": ">=7.0.0"
},
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pantojs/panto/issues"
},
"homepage": "https://github.com/pantojs/panto#readme",
"dependencies": {
"callback2promise": "^1.0.2",
"chokidar": "^1.6.1",
"define-frozen-property": "^0.1.0",
"glob": "^7.1.1",
"lodash": "^4.16.4",
"panto-dependency-map": "^0.2.1",
"panto-file-utils": "^0.3.1",
"panto-logger": "^0.2.3",
"panto-options": "^0.1.2",
"panto-stream": "^0.8.0",
"subdir": "0.0.3"
},
"devDependencies": {
"coveralls": "^2.11.14",
"mocha": "^3.1.0",
"mocha-lcov-reporter": "^1.2.0",
"panto-transformer": "^0.2.4",
"pre-commit": "^1.1.3"
}
}