-
Notifications
You must be signed in to change notification settings - Fork 142
/
Copy pathpackage.json
80 lines (80 loc) · 2.18 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
{
"name": "@embroider/core",
"version": "0.31.0",
"private": false,
"description": "A build system for EmberJS applications.",
"repository": {
"type": "git",
"url": "https://github.com/embroider-build/embroider.git",
"directory": "packages/core"
},
"license": "MIT",
"author": "Edward Faulkner",
"main": "src/index.js",
"files": [
"src/**/*.js",
"src/**/*.d.ts",
"src/**/*.js.map"
],
"scripts": {
"prepare": "tsc",
"test": "jest"
},
"dependencies": {
"@babel/core": "^7.12.3",
"@babel/parser": "^7.12.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/runtime": "^7.12.5",
"@babel/traverse": "^7.12.1",
"@babel/types": "^7.12.1",
"@embroider/macros": "0.31.0",
"assert-never": "^1.1.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"broccoli-persistent-filter": "^2.2.2",
"broccoli-plugin": "^3.0.0",
"broccoli-source": "^1.1.0",
"debug": "^3.1.0",
"fast-sourcemap-concat": "^1.4.0",
"filesize": "^4.1.2",
"fs-extra": "^7.0.1",
"fs-tree-diff": "^2.0.0",
"handlebars": "^4.4.2",
"js-string-escape": "^1.0.1",
"jsdom": "^16.4.0",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.10",
"pkg-up": "^2.0.0",
"resolve": "^1.8.1",
"resolve-package-path": "^1.2.2",
"semver": "^7.3.2",
"strip-bom": "^3.0.0",
"typescript-memoize": "^1.0.0-alpha.3",
"walk-sync": "^1.1.3",
"wrap-legacy-hbs-plugin-if-needed": "^1.0.1"
},
"devDependencies": {
"@embroider/sample-transforms": "0.0.0",
"@embroider/test-support": "0.31.0",
"@types/babel__core": "^7.1.10",
"@types/debug": "^0.0.31",
"@types/filesize": "^4.1.0",
"@types/jsdom": "^16.2.4",
"@types/json-stable-stringify": "^1.0.32",
"@types/lodash": "^4.14.116",
"@types/node": "^10.5.2",
"@types/resolve": "^0.0.8",
"@types/semver": "^7.3.4",
"@types/strip-bom": "^3.0.0",
"@types/tmp": "^0.1.0",
"fixturify": "^1.2.0",
"tmp": "^0.1.0",
"typescript": "~4.0.0"
},
"engines": {
"node": "10.* || 12.* || >= 14"
},
"volta": {
"extends": "../../package.json"
}
}