-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
74 lines (74 loc) · 1.88 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
{
"name": "broccoli-rollup",
"version": "4.1.0",
"description": "Rollup integration with broccoli",
"keywords": [
"broccoli",
"rollup"
],
"homepage": "https://github.com/chadhietala/broccoli-rollup#readme",
"repository": {
"type": "git",
"url": "https://github.com/chadhietala/broccoli-rollup"
},
"license": "MIT",
"author": "Chad Hietala <[email protected]>",
"contributors": [
{
"name": "Stefan Penner",
"email": "[email protected]"
},
{
"name": "Kris Selden",
"email": "[email protected]"
}
],
"files": [
"index.js",
"index.d.ts",
"src",
"dist"
],
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"build:clean": "rm -rf && tsc",
"lint": "tslint -p tsconfig.json && tslint -p tests/tsconfig.json",
"prepare": "yarn build:clean",
"report": "nyc report -r text -r lcov",
"report:html": "nyc report -r html && open coverage/index.html",
"test": "yarn lint && yarn test:check && yarn test:coverage",
"posttest": "yarn report",
"test:check": "tsc -p tests",
"test:coverage": "nyc -r lcov qunit tests",
"test:fast": "qunit tests"
},
"dependencies": {
"@types/broccoli-plugin": "^1.3.0",
"broccoli-plugin": "^2.0.0",
"fs-tree-diff": "^2.0.1",
"heimdalljs": "^0.2.6",
"node-modules-path": "^1.0.1",
"rollup": "^1.12.0",
"symlink-or-copy": "^1.2.0",
"walk-sync": "^1.1.3"
},
"devDependencies": {
"@types/node": "^12.0.2",
"@types/qunit": "^2.9.0",
"broccoli-merge-trees": "^3.0.2",
"broccoli-test-helper": "^2.0.0",
"nyc": "^14.1.1",
"prettier": "^1.17.1",
"qunit": "^2.9.2",
"source-map": "0.7.3",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.4.5"
},
"engines": {
"node": ">=8.0"
}
}