forked from nuxt-community/pwa-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·50 lines (50 loc) · 1.25 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
44
45
46
47
48
49
50
{
"name": "@nuxtjs/pwa",
"version": "0.0.0",
"private": true,
"contributors": [
"Pooya Parsa <[email protected]>",
"Alexander Lichter <[email protected]>",
"Jonas Galvez <[email protected]>"
],
"scripts": {
"test": "npm run lint && jest",
"lint": "eslint --ext .js packages",
"release": "lerna publish --conventional-commits"
},
"repository": {
"type": "git",
"url": "https://github.com/nuxt-community/pwa-module.git"
},
"workspaces": [
"packages/*"
],
"publishConfig": {
"access": "public"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"devDependencies": {
"axios": "^0.18.0",
"babel-eslint": "^9.0.0",
"codecov": "^3.0.0",
"eslint": "^5.5.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-html": "^4.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.22.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"fs-extra": "^7.0.0",
"jest": "^23.5.0",
"jsdom": "^12.0.0",
"klaw-sync": "^4.0.0",
"lerna": "^3.2.1",
"nuxt-edge": "^2.0.0-25597267.9a70280",
"standard-version": "^4.4.0"
}
}