forked from Kong/insomnia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 988 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
33
{
"name": "insomnia",
"private": true,
"version": "1.0.0",
"author": "Gregory Schier <[email protected]>",
"repository": "https://github.com/getinsomnia/insomnia",
"bugs": {
"url": "https://github.com/getinsomnia/insomnia"
},
"scripts": {
"bootstrap": "npm install && lerna bootstrap && lerna run bootstrap",
"publish": "lerna publish",
"clean": "lerna clean --yes && rimraf node_modules",
"test": "lerna run test --stream",
"app-start": "lerna run start --stream --scope=insomnia-app",
"app-build": "lerna run build --stream --scope=insomnia-app",
"app-package": "lerna run package --stream --scope=insomnia-app",
"format-code": "prettier --write \"**/*.js\""
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"husky": "^1.0.0-rc.9",
"jest": "^23.6.0",
"lerna": "^3.4.3",
"prettier": "^1.13.6",
"pretty-quick": "^1.6.0",
"rimraf": "^2.6.2"
}
}