forked from brunch/brunch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.11 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "brunch",
"description": "Fast front-end web app build tool with simple declarative config, seamless incremental compilation for rapid development, an opinionated pipeline and workflow, and core support for source maps",
"version": "2.10.12",
"keywords": [
"assembler",
"builder",
"stack",
"pipeline",
"build tool",
"workflow",
"source map",
"incremental",
"config",
"react",
"webpack",
"browserify",
"grunt",
"gulp",
"broccoli",
"backbone",
"ember",
"angular",
"chaplin",
"html5"
],
"homepage": "http://brunch.io/",
"author": "Brunch team (http://brunch.io)",
"repository": "https://github.com/brunch/brunch.git",
"bugs": "https://github.com/brunch/brunch/issues",
"license": "MIT",
"main": "./lib/index",
"files": [
"bin",
"lib"
],
"bin": {
"brunch": "./bin/brunch"
},
"scripts": {
"lint": "eslint bin/brunch lib test",
"lint:fix": "eslint --fix bin/brunch lib test",
"test": "npm run lint && LOGGY_STACKS=1 ava -s --verbose --fail-fast",
"test:coverage": "nyc ava -s && nyc report --reporter=html"
},
"engines": {
"node": ">= 4.0",
"npm": ">= 3.0"
},
"dependencies": {
"anymatch": "~1.3",
"anysort": "~1.0",
"check-dependencies": "~1.0.1",
"chokidar": "^1.6",
"coffeescript": "~1.12.7",
"commander": "~2.9",
"commonjs-require-definition": "~0.6.2",
"debug": "~2.2",
"deppack": "~0.7",
"deps-install": "~0.1",
"fcache": "~0.3",
"init-skeleton": "~1.0",
"loggy": "~1.0.2",
"micro-es7-shim": "^0.1",
"micro-promisify": "~0.1",
"mkdirp": "~0.5",
"promise.prototype.finally": "^2",
"read-components": "~0.7",
"serve-brunch": "~0.2",
"since-app-start": "~0.3",
"skemata": "~0.1",
"source-map": "~0.5",
"universal-path": "^0.1"
},
"devDependencies": {
"ava": "~0.16",
"eslint": "^3",
"eslint-config-brunch": "^1",
"fixturify": "^0.2",
"fs-extra": "^0.30",
"nyc": "^6.4.2",
"rewire": "^2.5",
"test-console": "^1"
},
"eslintConfig": {
"extends": "brunch"
}
}