-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
53 lines (53 loc) · 1.34 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
{
"name": "ember-rollup",
"description": "Use rollup to add runtime dependencies to an ember-cli addon.",
"version": "3.0.0",
"author": "Asa Kusuma",
"license": "MIT",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/asakusuma/ember-rollup"
},
"keywords": [
"ember",
"ember-cli",
"rollup"
],
"homepage": "https://github.com/asakusuma/ember-rollup",
"engines": {
"node": "10.* || 12.* || >= 14.*"
},
"scripts": {
"test": "mocha tests/ --exit",
"test:debug": "mocha debug tests/"
},
"dependencies": {
"@babel/core": "^7.0.0-0",
"@babel/preset-env": "^7.0.0",
"broccoli-builder": "^0.18.14",
"broccoli-funnel": "^3.0.3",
"broccoli-merge-trees": "^4.2.0",
"broccoli-rollup": "^4.1.1",
"broccoli-source": "^3.0.0",
"broccoli-stew": "^3.0.0",
"broccoli-string-replace": "^0.1.1",
"broccoli-test-helper": "^2.0.0",
"chai": "^4.1.2",
"co": "^4.6.0",
"mocha": "^8.2.1",
"require-relative": "^0.8.7",
"rollup": "^2.33.1",
"@rollup/plugin-babel": "5.2.1"
},
"devDependencies": {
"@xg-wang/whatwg-fetch": "^3.0.0",
"broccoli-file-creator": "^2.1.1",
"console-ui": "3.1.2",
"ember-cli": "^3.3.0",
"fixturify": "^2.1.0",
"fs-extra": "9.0.1",
"resolve": "1.18.1",
"spaniel": "2.6.3"
}
}