forked from vercel/next-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 838 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
34
35
{
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"eslint-config-prettier": "^2.9.0",
"husky": "^0.14.3",
"lint-staged": "^6.1.0",
"prettier": "^1.10.2",
"xo": "^0.18.2"
},
"scripts": {
"lerna": "lerna",
"release-stable": "lerna publish --registry=https://registry.npmjs.org/",
"release-canary": "lerna publish --cd-version=prerelease --preid=canary --npm-tag=canary --registry=https://registry.npmjs.org/",
"precommit": "lint-staged",
"lint": "xo",
"test": "npm run lint && NODE_ENV=test nyc ava"
},
"xo": {
"extends": "prettier"
},
"lint-staged": {
"*.js": [
"npm run lint",
"prettier --single-quote --no-semi --write",
"git add"
]
},
"dependencies": {
"lerna": "^3.0.0-rc.0"
},
"name": "next-plugins"
}