forked from FormidableLabs/builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.64 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
{
"name": "builder",
"version": "3.2.1",
"description": "An NPM-based task runner",
"repository": {
"type": "git",
"url": "https://github.com/FormidableLabs/builder.git"
},
"author": "Ryan Roemer <ryan.roemer@formidable.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/FormidableLabs/builder/issues"
},
"homepage": "https://github.com/FormidableLabs/builder",
"scripts": {
"builder:build-md-toc": "doctoc --notitle README.md",
"builder:build": "npm run builder:build-md-toc",
"builder:lint-server": "eslint --color -c .eslintrc-server lib bin",
"builder:lint-server-test": "eslint --color -c .eslintrc-server-test test",
"builder:lint": "npm run builder:lint-server && npm run builder:lint-server-test",
"builder:test": "mocha --opts test/server/mocha.opts test/server/spec",
"builder:test-cov": "istanbul cover --config .istanbul.server.yml _mocha -- --opts test/server/mocha.opts test/server/spec",
"builder:check": "npm run builder:lint && npm run builder:test",
"builder:check-ci": "npm run builder:lint && npm run builder:test-cov"
},
"bin": {
"builder": "bin/builder.js"
},
"dependencies": {
"async": "^1.4.2",
"chalk": "^1.1.1",
"js-yaml": "^3.4.3",
"lodash": "^3.10.1",
"nopt": "^3.0.6",
"tree-kill": "^1.0.0"
},
"devDependencies": {
"chai": "^3.4.1",
"coveralls": "^2.11.4",
"doctoc": "^1.2.0",
"eslint": "^1.7.3",
"eslint-config-defaults": "^7.0.1",
"eslint-plugin-filenames": "^0.1.2",
"istanbul": "^0.4.1",
"mocha": "^2.3.4",
"mock-fs": "^3.7.0",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0"
}
}