-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.47 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@dnlup/vue-cli-plugin-unit-ava",
"version": "1.0.0-rc.4",
"description": "@vue/cli plugin to run unit tests with ava",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=lcov --reporter=text-summary ava",
"lint": "eslint ./ --fix",
"release": "HUSKY_SKIP_HOOKS=1 standard-version",
"postrelease": "git push --follow-tags origin master && node ./scripts/publish.js"
},
"keywords": [
"vue",
"ava",
"unit",
"tests",
"vue-cli-plugin",
"@vue/cli",
"vuejs",
"testing"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dnlup/vue-cli-plugin-unit-ava.git"
},
"homepage": "https://github.com/dnlup/vue-cli-plugin-unit-ava#readme",
"bugs": {
"url": "https://github.com/dnlup/vue-cli-plugin-unit-ava/issues"
},
"engines": {
"node": ">=8.11"
},
"author": "dnlup <dwon.dnl@gmail.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"javascript-stringify": "^2.0.0"
},
"devDependencies": {
"@vue/babel-preset-app": "^3.11.0",
"@vue/cli": "^3.11.0",
"@vue/cli-service": "^3.11.0",
"@vue/cli-test-utils": "^3.11.0",
"@vue/test-utils": "^1.0.0-beta.29",
"ava": "^2.3.0",
"babel-plugin-module-resolver": "^3.2.0",
"browser-env": "^3.2.6",
"commitizen": "^4.0.3",
"conventional-github-releaser": "^3.1.3",
"css-modules-require-hook": "^4.2.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.2.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"execa": "^2.0.4",
"husky": "^3.0.5",
"inquirer": "^7.0.0",
"is-ci": "^2.0.0",
"lint-staged": "^9.2.5",
"nanoid": "^2.0.4",
"nyc": "^14.1.1",
"require-extension-hooks": "^0.3.3",
"require-extension-hooks-babel": "^1.0.0",
"require-extension-hooks-vue": "^3.0.0",
"rimraf": "^3.0.0",
"standard-version": "^8.0.1",
"stylus": "^0.54.7",
"ts-node": "^8.3.0",
"tsconfig-paths": "^3.8.0",
"vue-cli-plugin-vuetify": "^0.6.3"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}