-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 984 Bytes
/
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
{
"private": true,
"workspaces": [
"packages/*"
],
"license": "MIT",
"author": "Jonathan Johnson",
"scripts": {
"test": "npm-run-all test:*",
"lint": "npm-run-all lint:*",
"test:addon": "npm run -w ember-noscript test",
"lint:addon": "npm run -w ember-noscript test",
"start:test-app-custom-config": "npm run -w test-app-custom-config start",
"test:test-app-custom-config": "npm run -w test-app-custom-config test",
"lint:test-app-custom-config": "npm run -w test-app-custom-config lint",
"start:test-app-defaults": "npm run -w test-app-defaults start",
"test:test-app-defaults": "npm run -w test-app-defaults test",
"lint:test-app-defaults": "npm run -w test-app-defaults lint"
},
"devDependencies": {
"npm-run-all": "4.1.5",
"pre-commit": "^1.2.2"
},
"repository": "https://github.com/jrjohnson/ember-noscript.git",
"engines": {
"node": ">= 16",
"npm": ">= 7"
},
"pre-commit": [
"lint"
]
}