-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
{
"private": true,
"description": "alarmist-rollup repository",
"author": "Jean-Yves Boudreau <[email protected]>",
"license": "ISC",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "jest",
"format": "prettier-standard --format",
"lint": "standard | snazzy",
"verify": "npm-run-all -s test format lint",
"alarmist:test": "nodemon -V --delay 2 --watch . -e js --exec \"alarmist-npm test\"",
"alarmist:format": "nodemon -V --delay 2 --watch . -e js,md,json,yaml,yml --exec \"alarmist-npm format\"",
"alarmist:lint": "nodemon -V --delay 2 --watch . -e js --exec \"alarmist-npm lint\"",
"start": "alarmist-monitor npm-run-all -p \"alarmist:*\"",
"ci": "npm-run-all -s test format lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": "prettier-standard --lint"
},
"devDependencies": {
"alarmist": "^1.0.27",
"alarmist-npm": "^1.0.6",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-mock-console": "^1.0.0",
"lint-staged": "^10.2.6",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"prettier-standard": "^16.3.0",
"snazzy": "^8.0.0",
"standard": "^14.3.4"
}
}