-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.16 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@script-development/vue-services",
"version": "0.2.33",
"description": "Services for Vue SPA App",
"sideEffects": false,
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"typings": "types/index.d.ts",
"files": [
"dist",
"types",
"src",
"cli"
],
"repository": "github:script-development/vue-services",
"scripts": {
"test": "nyc mocha --recursive --require @babel/register",
"build": "eslint ./src && rollup --config rollup.config.js",
"dev": "rollup -c scripts/config.js",
"watch": "rollup -c scripts/config.js --watch",
"pub": "npm version patch && npm publish",
"docs": "typedoc",
"lint": "eslint ./src",
"mutate": "stryker run",
"prepare": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"author": "Script",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"@rollup/plugin-node-resolve": "^13.0.0",
"@stryker-mutator/core": "^3.3.1",
"@stryker-mutator/javascript-mutator": "^4.0.0",
"@stryker-mutator/mocha-runner": "^3.3.1",
"axios-mock-adapter": "^1.18.2",
"eslint": "^7.12.1",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^6.0.0",
"mocha": "^9.0.0",
"nyc": "^15.1.0",
"pinst": "^2.1.4",
"prettier": "^2.1.1",
"pretty-quick": "^3.1.0",
"rollup": "^2.26.11",
"typedoc": "^0.20.25",
"typescript": "^4.0.2"
},
"peerDependencies": {
"@msgpack/msgpack": "1.x",
"bootstrap-vue": "2x",
"vue": "2.x",
"vue-multiselect": "2.x",
"vue-router": "3.x",
"vuex": "3.x"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern \"**/*.*(js|json)\""
}
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"bin": {
"servvue": "cli/index.js"
}
}