forked from ember-cli/ember-app-blueprint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.38 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.38 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
{
"name": "@ember/app-blueprint",
"version": "6.10.0-alpha.5",
"description": "Blueprint for next generation of Ember apps",
"keywords": [
"ember-blueprint"
],
"repository": {
"type": "git",
"url": "git@github.com:ember-cli/ember-app-blueprint.git"
},
"license": "MIT",
"author": "",
"main": "index.js",
"scripts": {
"lint": "concurrently 'pnpm:lint:*(!fix)'",
"lint:fix": "pnpm lint:eslint && pnpm format",
"lint:eslint": "eslint .",
"lint:prettier": "prettier . --check",
"format": "prettier . --write",
"test": "vitest"
},
"release-plan": {
"semverIncrementAs": {
"minor": "prerelease",
"patch": "prerelease"
},
"semverIncrementTag": "alpha",
"publishTag": "alpha"
},
"dependencies": {
"chalk": "^4.1.2",
"ember-cli-string-utils": "^1.1.0",
"lodash": "^4.17.21",
"walk-sync": "^3.0.0"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"concurrently": "^9.1.2",
"ember-cli": "^6.3.1",
"eslint": "9.x",
"eslint-config-prettier": "^9.1.0",
"execa": "^9.1.0",
"fixturify": "^3.0.0",
"globals": "^15.3.0",
"jsonc-parser": "^3.3.1",
"prettier": "^3.2.5",
"prettier-plugin-ember-template-tag": "^2.0.2",
"release-plan": "^0.17.2",
"strip-ansi": "^7.1.0",
"tmp-promise": "^3.0.3",
"vitest": "^4.0.0-beta.17"
},
"packageManager": "pnpm@10.20.0"
}