This repository has been archived by the owner on Dec 1, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
64 lines (64 loc) · 1.95 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
{
"name": "vue-cli-plugin-p11n",
"description": "Vue CLI 3 plugin to pluginize your Vue project",
"version": "0.4.0",
"author": {
"name": "kazuya kawaguchi",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/kazupon/vue-cli-plugin-p11n/issues"
},
"dependencies": {
"chalk": "^2.4.2",
"debug": "^4.1.1",
"rimraf": "^2.6.3",
"rollup": "^1.1.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-typescript2": "^0.19.2",
"rollup-plugin-vue": "^4.7.2",
"uglify-js": "^2.7.5",
"vuepress": "^1.0.0-alpha.31"
},
"devDependencies": {
"@vue/cli": "3.3.0",
"@vue/cli-service": "3.3.0",
"@vue/cli-test-utils": "3.3.0",
"conventional-changelog-cli": "^1.2.0",
"conventional-github-releaser": "^1.1.3",
"eslint": "^5.12.0",
"eslint-plugin-vue": "^5.1.0",
"execa": "^1.0.0",
"git-commit-message-convention": "git://github.com/kazupon/git-commit-message-convention.git",
"jest": "^23.6.0",
"memfs": "^2.14.2"
},
"homepage": "https://github.com/kazupon/vue-cli-plugin-p11n#readme",
"jest": {
"testEnvironment": "node"
},
"keywords": [
"plugin",
"vue",
"vue-cli"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kazupon/vue-cli-plugin-p11n.git"
},
"scripts": {
"changelog": "conventional-changelog -i CHANGELOG.md -s -n ./node_modules/git-commit-message-convention/convention.js",
"clean": "rimraf coverage tests/e2e/projects/*",
"lint": "eslint --fix --ext .js .",
"lint:ci": "eslint --ext .js .",
"release": "conventional-github-releaser -n ./node_modules/git-commit-message-convention/convention.js",
"test": "npm run test:unit",
"test:unit": "jest ./tests/unit/**/*.spec.js",
"test:e2e": "jest ./tests/e2e/*.spec.js"
}
}