forked from emberjs/ember-cli-babel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.89 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
{
"name": "broccoli-babel-transpiler",
"version": "7.7.0",
"description": "A Broccoli plugin which transpile ES6 to readable ES5 by using babel.",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"scripts": {
"changelog": "lerna-changelog",
"test": "mocha tests/test.js",
"test:debug": "mocha debug tests/test.js",
"test:slow": "mocha tests/test-slow.js",
"test:slow:debug": "mocha debug tests/test-slow.js",
"test:all": "mocha tests/test.js tests/test-slow.js"
},
"repository": {
"type": "git",
"url": "https://github.com/babel/broccoli-babel-transpiler.git"
},
"keywords": [
"broccoli-plugin",
"transpiler",
"es6",
"ecmascript",
"ecmascript6",
"harmony",
"javascript",
"js"
],
"author": "nightire <nightire@very-geek.com> (http://very-geek.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/babel/broccoli-babel-transpiler/issues"
},
"homepage": "https://github.com/babel/broccoli-babel-transpiler",
"dependencies": {
"@babel/core": "^7.11.0",
"@babel/polyfill": "^7.10.4",
"babel-plugin-debug-macros": "^0.3.4",
"babel-plugin-ember-modules-api-polyfill": "v3.2.1",
"broccoli-persistent-filter": "^3.0.0",
"clone": "^2.1.2",
"ensure-posix-path": "^1.1.1",
"esbuild": "^0.8.44",
"hash-for-dep": "^1.4.7",
"heimdalljs": "^0.2.1",
"heimdalljs-logger": "^0.1.9",
"json-stable-stringify": "^1.0.1",
"rsvp": "^4.8.4",
"workerpool": "^6.0.2"
},
"devDependencies": {
"@babel/plugin-transform-modules-amd": "^7.10.5",
"amd-name-resolver": "^1.3.1",
"babel-plugin-module-resolver": "^4.1.0",
"broccoli-test-helpers": "0.0.9",
"chai": "^4.2.0",
"fixturify-project": "^1.9.0",
"lerna-changelog": "^0.8.2",
"mkdirp": "^0.5.1",
"mocha": "^6.0.1",
"ps-node": "^0.1.6"
},
"engines": {
"node": "10.* || >= 12.*"
}
}