Skip to content

Commit 45f29d7

Browse files
committed
Initialise new project
0 parents  commit 45f29d7

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

package.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "ember-learn-release-tool",
3+
"version": "0.0.0",
4+
"description": "A tool to help the Ember Core Learning Team manage releases",
5+
"bin": "cli.js",
6+
"type": "module",
7+
"scripts": {
8+
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\" --prefixColors auto",
9+
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\" --prefixColors auto",
10+
"lint:js": "eslint . --cache",
11+
"lint:js:fix": "eslint . --fix",
12+
"lint:prettier": "prettier -c .",
13+
"lint:prettier:fix": "prettier --write .",
14+
"test": "echo \"Error: no test specified\" && exit 1"
15+
},
16+
"keywords": [],
17+
"author": "",
18+
"license": "MIT",
19+
"dependencies": {
20+
"commander": "^12.1.0",
21+
"enquirer": "^2.4.1",
22+
"execa": "^9.5.2",
23+
"semver": "^7.6.3",
24+
"yaml": "^2.6.1"
25+
},
26+
"packageManager": "[email protected]+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c",
27+
"devDependencies": {
28+
"@eslint/js": "^9.16.0",
29+
"concurrently": "^9.1.0",
30+
"eslint": "^9.16.0",
31+
"globals": "^15.13.0",
32+
"prettier": "^3.4.2"
33+
}
34+
}

0 commit comments

Comments
 (0)