-
Notifications
You must be signed in to change notification settings - Fork 145
/
Copy pathpackage.json
50 lines (50 loc) · 1.1 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
{
"name": "@embroider/shared-internals",
"version": "0.43.1",
"private": false,
"description": "Utilities shared among the other embroider packages",
"repository": {
"type": "git",
"url": "https://github.com/embroider-build/embroider.git",
"directory": "packages/shared-internals"
},
"exports": {
".": {
"browser": "./src/browser-index.js",
"default": "./src/index.js"
}
},
"license": "MIT",
"author": "Edward Faulkner",
"main": "src/index.js",
"files": [
"src/**/*.js",
"src/**/*.d.ts",
"src/**/*.js.map"
],
"scripts": {
"prepare": "tsc",
"test": "jest"
},
"dependencies": {
"ember-rfc176-data": "^0.3.17",
"resolve-package-path": "^4.0.1",
"typescript-memoize": "^1.0.1",
"fs-extra": "^9.1.0",
"lodash": "^4.17.21",
"semver": "^7.3.5"
},
"devDependencies": {
"@types/semver": "^7.3.6",
"@types/tmp": "^0.1.0",
"fixturify": "^2.1.1",
"tmp": "^0.1.0",
"typescript": "~4.0.0"
},
"engines": {
"node": "12.* || 14.* || >= 16"
},
"volta": {
"extends": "../../package.json"
}
}