forked from embroider-build/ember-auto-import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.39 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "ember-auto-import",
"version": "2.6.3",
"description": "Zero-config import from NPM packages",
"keywords": [
"ember-addon",
"import",
"npm",
"webpack"
],
"license": "MIT",
"author": "Edward Faulkner <[email protected]>",
"directories": {
"doc": "doc",
"test": "tests"
},
"main": "js/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ef4/ember-auto-import",
"directory": "packages/ember-auto-import"
},
"scripts": {
"compile": "tsc",
"clean": "git clean -x -f",
"build": "ember build --environment=production",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel \"lint:!(fix)\"",
"lint:fix": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*:fix",
"lint:hbs:fix": "ember-template-lint . --fix",
"lint:js:fix": "eslint . --fix",
"start": "ember serve",
"test:node": "qunit js/tests",
"prepare": "tsc"
},
"dependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@embroider/macros": "^1.0.0",
"@embroider/shared-internals": "^2.0.0",
"babel-loader": "^8.0.6",
"babel-plugin-ember-modules-api-polyfill": "^3.5.0",
"babel-plugin-htmlbars-inline-precompile": "^5.2.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"broccoli-debug": "^0.6.4",
"broccoli-funnel": "^3.0.8",
"broccoli-merge-trees": "^4.2.0",
"broccoli-plugin": "^4.0.0",
"broccoli-source": "^3.0.0",
"css-loader": "^5.2.0",
"debug": "^4.3.1",
"fs-extra": "^10.0.0",
"fs-tree-diff": "^2.0.0",
"handlebars": "^4.3.1",
"js-string-escape": "^1.0.1",
"lodash": "^4.17.19",
"mini-css-extract-plugin": "^2.5.2",
"parse5": "^6.0.1",
"resolve": "^1.20.0",
"resolve-package-path": "^4.0.3",
"semver": "^7.3.4",
"style-loader": "^2.0.0",
"typescript-memoize": "^1.0.0-alpha.3",
"walk-sync": "^3.0.0"
},
"devDependencies": {
"@types/babel__core": "^7.0.4",
"@types/babel__generator": "^7.0.1",
"@types/babel__template": "^7.0.1",
"@types/babel__traverse": "^7.0.3",
"@types/debug": "^0.0.31",
"@types/fs-extra": "^5.0.4",
"@types/js-string-escape": "^1.0.0",
"@types/jsdom": "^12.2.3",
"@types/lodash": "^4.14.110",
"@types/node": "^10.7.1",
"@types/parse5": "^6.0.0",
"@types/pkg-up": "^2.0.0",
"@types/qunit": "^2.11.1",
"@types/resolve": "^0.0.8",
"@types/semver": "^7.3.4",
"@types/webpack": "^5.28.0",
"babel-eslint": "^10.1.0",
"broccoli-node-api": "^1.7.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-qunit": "^7.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"quick-temp": "^0.1.8",
"qunit": "^2.17.2",
"qunit-assertions-extra": "^0.8.5",
"typescript": "4.3.5"
},
"engines": {
"node": "12.* || 14.* || >= 16"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"configPath": "tests/dummy/config",
"before": [
"broccoli-asset-rev",
"@embroider/macros"
],
"after": [
"ember-cli-babel",
"ember-cli-coffeescript",
"ember-cli-typescript"
]
},
"volta": {
"node": "14.16.0",
"npm": "8.3.0"
}
}