-
Notifications
You must be signed in to change notification settings - Fork 217
/
package.json
102 lines (102 loc) · 2.79 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "broccoli",
"version": "3.5.2",
"description": "Fast client-side asset builder",
"keywords": [
"asset",
"browser",
"build",
"builder",
"frontend",
"pipeline"
],
"homepage": "https://github.com/broccolijs/broccoli",
"license": "MIT",
"author": "Jo Liss <joliss42@gmail.com>",
"main": "dist/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/broccolijs/broccoli"
},
"scripts": {
"build": "tsc && yarn html",
"clean": "rm -rf dist",
"html": "copyfiles -u 1 lib/templates/*.html ./dist",
"lint": "eslint --ext .ts,.js lib/ test/",
"lint:fix": "eslint --ext .ts,.js lib/ test/ --fix",
"prepare": "yarn build",
"pretest": "multidep test/multidep.json",
"test": "yarn build && mocha -r test/utils/requires",
"test:debug": "yarn build && mocha --inspect-brk -r test/utils/requires",
"watch": "tsc --watch"
},
"dependencies": {
"@types/chai": "^4.2.9",
"@types/chai-as-promised": "^7.1.2",
"@types/express": "^4.17.2",
"ansi-html": "^0.0.7",
"broccoli-node-info": "^2.1.0",
"broccoli-slow-trees": "^3.0.1",
"broccoli-source": "^3.0.0",
"commander": "^4.1.1",
"connect": "^3.6.6",
"console-ui": "^3.0.4",
"esm": "^3.2.4",
"findup-sync": "^4.0.0",
"handlebars": "^4.7.3",
"heimdalljs": "^0.2.6",
"heimdalljs-logger": "^0.1.9",
"https": "^1.0.0",
"mime-types": "^2.1.26",
"resolve-path": "^1.4.0",
"rimraf": "^3.0.2",
"sane": "^4.0.0",
"tmp": "^0.0.33",
"tree-sync": "^2.0.0",
"underscore.string": "^3.2.2",
"watch-detector": "^1.0.0"
},
"devDependencies": {
"@types/console-ui": "^2.2.3",
"@types/esm": "^3.2.0",
"@types/findup-sync": "^2.0.2",
"@types/mime-types": "^2.1.0",
"@types/node": "^12.7.1",
"@types/rimraf": "^2.0.3",
"@types/sane": "^2.0.0",
"@types/tmp": "^0.0.33",
"@types/underscore.string": "^0.0.38",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"broccoli-node-api": "^1.7.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"copyfiles": "^2.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"fixturify": "^1.1.0",
"got": "^9.0.0",
"longjohn": "^0.2.12",
"mocha": "^7.1.0",
"multidep": "^2.0.2",
"portfinder": "^1.0.25",
"prettier": "^1.19.1",
"semver": "^6.3.0",
"sinon": "^9.0.0",
"sinon-chai": "^3.5.0",
"source-map-support": "^0.5.16",
"symlink-or-copy": "^1.3.1",
"ts-node": "^8.6.2",
"typescript": "~3.8.3"
},
"engines": {
"node": "8.* || >= 10.*"
},
"files": [
"dist"
]
}