forked from embroider-build/addon-blueprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "@embroider/addon-blueprint",
"version": "2.18.0",
"description": "Blueprint for scaffolding ember v2 addons",
"keywords": [
"ember-blueprint"
],
"repository": "https://github.com/embroider-build/addon-blueprint.git",
"license": "MIT",
"author": "simonihmig <[email protected]>",
"scripts": {
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix",
"test": "pnpm --filter 'blueprint-tests' test"
},
"dependencies": {
"ember-cli": "^5.6.0",
"ember-cli-normalize-entity-name": "^1.0.0",
"ember-cli-string-utils": "^1.1.0",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"lodash": "^4.17.21",
"semver": "^7.3.8",
"silent-error": "^1.1.1",
"sort-package-json": "^1.54.0"
},
"devDependencies": {
"@nullvoxpopuli/eslint-configs": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.19.0",
"prettier": "^3.0.2",
"release-plan": "^0.8.0",
"typescript": "^4.7.4"
},
"engines": {
"node": "16.* || >= 18"
},
"volta": {
"node": "16.20.1",
"yarn": "1.22.18",
"pnpm": "8.7.6"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}