forked from mockyeah/mockyeah
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 883 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
{
"private": true,
"scripts": {
"start": "lerna run start",
"test": "lerna run build && lerna run test",
"test:ci": "lerna run build:ci && lerna run test",
"build": "lerna run build",
"build:ci": "lerna run build:ci",
"test:watch": "lerna run test:watch",
"test:unit": "lerna run test:unit",
"test:coverage": "lerna run test:coverage",
"test:coverage:report": "lerna run test:coverage:report",
"lint": "lerna run lint",
"lint:watch": "lerna run lint:watch",
"pretty": "prettier --write '**'",
"pretty:check": "prettier --check '**'",
"preinstall": "rm -rf node_modules/@mockyeah node_modules/match-deep",
"postinstall": "[ ! -z \"$NETLIFY\" ] || lerna bootstrap",
"postversion": "prettier --write lerna.json"
},
"devDependencies": {
"lerna": "^3.18.4",
"prettier": "^1.19.1"
},
"name": "mockyeah"
}