forked from broccolijs/broccoli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.67 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.67 KB
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
{
"name": "broccoli",
"description": "Fast client-side asset builder",
"version": "2.0.0-beta.1",
"author": "Jo Liss <joliss42@gmail.com>",
"main": "lib/index.js",
"license": "MIT",
"keywords": [
"builder",
"build",
"frontend",
"browser",
"asset",
"pipeline"
],
"repository": {
"type": "git",
"url": "https://github.com/broccolijs/broccoli"
},
"homepage": "https://github.com/broccolijs/broccoli",
"dependencies": {
"broccoli-node-info": "1.1.0",
"broccoli-slow-trees": "^2.0.0",
"broccoli-source": "^1.1.0",
"commander": "^2.11.0",
"connect": "^3.6.5",
"findup-sync": "^2.0.0",
"handlebars": "^4.0.11",
"heimdalljs": "^0.2.3",
"heimdalljs-logger": "^0.1.9",
"mime": "^1.5.0",
"rimraf": "^2.6.2",
"rsvp": "^4.7.0",
"sane": "^2.2.0",
"tmp": "0.0.33",
"tree-sync": "^1.2.2",
"underscore.string": "^3.2.2",
"watch-detector": "^0.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint-config-prettier": "^2.8.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.3.1",
"fixturify": "^0.3.4",
"mocha": "^4.0.1",
"mocha-eslint": "^4.1.0",
"multidep": "^2.0.2",
"portfinder": "^1.0.13",
"prettier": "^1.8.2",
"semver": "^5.4.1",
"sinon": "^4.1.2",
"sinon-chai": "^2.14.0",
"symlink-or-copy": "^1.1.8"
},
"engines": {
"node": ">= 4"
},
"scripts": {
"lint": "eslint lib test",
"lint:fix": "eslint --fix lib test",
"pretest": "multidep test/multidep.json",
"test": "mocha",
"test:debug": "mocha --inspect-brk"
}
}