forked from nuxt-community/pwa-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.08 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
43
{
"private": true,
"contributors": [
"Pooya Parsa <[email protected]>"
],
"scripts": {
"test": "yarn lint && jest",
"lerna": "lerna",
"bootstrap": "lerna bootstrap",
"lint": "eslint --ext .js packages",
"release": "lerna publish --conventional-commits",
"force-release": "for p in packages/*; do cd $p ; npm publish ; cd ../.. ; done"
},
"workspaces": [
"packages/*"
],
"publishConfig": {
"access": "public"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"devDependencies": {
"axios": "^0.18.0",
"babel-eslint": "^8.1.2",
"codecov": "^3.0.0",
"eslint": "^4.14.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-html": "^4.0.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.5.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^22.0.4",
"jsdom": "^11.5.1",
"lerna": "^3.0.0-alpha.1",
"nuxt": "^1.3.0",
"standard-version": "^4.2.0"
}
}