forked from emberjs/ember-cli-babel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.63 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.63 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
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
{
"name": "ember-cli-babel",
"version": "6.14.1",
"description": "Ember CLI addon for Babel",
"keywords": [
"ember-addon",
"babel",
"ember",
"ember-cli",
"transpile",
"transpiler"
],
"bugs": {
"url": "https://github.com/babel/ember-cli-babel/issues"
},
"license": "MIT",
"author": "Gordon Kristan",
"files": [
"index.js"
],
"directories": {
"doc": "doc",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git://github.com/babel/ember-cli-babel.git"
},
"scripts": {
"build": "ember build",
"changelog": "lerna-changelog",
"lint:js": "eslint ./*.js addon addon-test-support app blueprints config lib server test-support tests",
"start": "ember serve",
"test:node": "mocha node-tests",
"test:node:debug": "mocha debug node-tests",
"test": "mocha node-tests && ember test",
"test:all": "mocha node-tests && ember try:each"
},
"dependencies": {
"amd-name-resolver": "1.2.0",
"babel-plugin-debug-macros": "^0.1.11",
"babel-plugin-ember-modules-api-polyfill": "^2.3.0",
"babel-plugin-transform-es2015-modules-amd": "^6.24.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"broccoli-babel-transpiler": "^6.4.2",
"broccoli-debug": "^0.6.4",
"broccoli-funnel": "^2.0.0",
"broccoli-source": "^1.1.0",
"clone": "^2.0.0",
"ember-cli-version-checker": "^2.1.2",
"semver": "^5.5.0"
},
"devDependencies": {
"broccoli-test-helper": "^1.1.0",
"chai": "^4.1.2",
"co": "^4.6.0",
"common-tags": "^1.7.2",
"console-ui": "^2.2.2",
"core-object": "^3.1.5",
"ember-cli": "~3.1.4",
"ember-cli-dependency-checker": "^2.1.1",
"ember-cli-eslint": "^4.2.3",
"ember-cli-htmlbars": "^2.0.3",
"ember-cli-htmlbars-inline-precompile": "^1.0.2",
"ember-cli-inject-live-reload": "^1.4.1",
"ember-cli-qunit": "^4.3.2",
"ember-cli-shims": "^1.2.0",
"ember-load-initializers": "^1.1.0",
"ember-resolver": "^4.5.5",
"ember-source": "~3.1.2",
"ember-source-channel-url": "^1.1.0",
"eslint-plugin-ember": "^5.2.0",
"eslint-plugin-node": "^6.0.1",
"lerna-changelog": "^0.7.0",
"loader.js": "^4.7.0",
"mocha": "^5.2.0",
"resolve": "^1.7.1"
},
"engines": {
"node": "^4.5 || 6.* || >= 7.*"
},
"changelog": {
"repo": "babel/ember-cli-babel",
"labels": {
"breaking": ":boom: Breaking Change",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"documentation": ":memo: Documentation",
"internal": ":house: Internal"
}
},
"ember-addon": {
"configPath": "tests/dummy/config"
}
}