-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "vue-route-store",
"version": "0.0.7",
"main": "dist/index.js",
"module": "dist/index.mjs",
"license": "MIT",
"scripts": {
"dev": "rollup -c rollup.config.js -w",
"build": "rollup -c rollup.config.js",
"lint": "eslint --fix .",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.12.1",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-vue": "^7.8.0",
"jest": "^26.6.3",
"rollup": "^2.51.0",
"rollup-plugin-ts": "^1.4.0",
"standard-version": "^9.1.1",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"tslib": "^2.2.0",
"typescript": "^4.2.3",
"vue": "^3.0.0",
"vue-router": "^4.0.0"
},
"peerDependencies": {
"vue": "^3.0.0",
"vue-router": "^4.0.0"
}
}