-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.14 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
{
"name": "@script-development/vue-services",
"version": "0.2.3",
"description": "Services for Vue SPA App",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "types/index.d.ts",
"files": [
"dist",
"types",
"src"
],
"scripts": {
"test": "nyc mocha --require @babel/register",
"test:watch": "mocha --watch --require @babel/register",
"build": "rollup -c scripts/config.js",
"dev": "vue-cli-service serve --open dev/main.js",
"watch": "rollup -c scripts/config.js --watch",
"pub": "npm version patch && npm publish",
"docs": "typedoc",
"lint": "eslint ./src",
"mutate": "stryker run"
},
"author": "Script",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"@rollup/plugin-node-resolve": "^9.0.0",
"@stryker-mutator/core": "^3.3.1",
"@stryker-mutator/javascript-mutator": "^3.3.1",
"@stryker-mutator/mocha-runner": "^3.3.1",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/test-utils": "^1.1.0",
"core-js": "^3.6.5",
"eslint": "^7.7.0",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"prettier": "^2.1.1",
"pretty-quick": "^3.0.0",
"rollup": "^2.26.11",
"sinon": "^9.0.3",
"typedoc": "^0.19.1",
"typescript": "^4.0.2",
"vue": "^2.6.12",
"vue-multiselect": "^2.1.6",
"vue-template-compiler": "^2.6.11",
"webpack": "^5.1.3"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern \"**/*.*(js|json)\""
}
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}