-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.82 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
{
"name": "vue-mark-slide",
"version": "1.1.0",
"description": "",
"bin": {
"vslide": "./src/cli/index.js"
},
"main": "index.js",
"scripts": {
"test": "jest",
"commit": "git add . && git-cz",
"release": "node scripts/release.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 2",
"lint": "eslint src --fix --ext .js,.vue",
"publish": "npm run commit && npm run release"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"author": "maoyuyang",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-loader": "^8.0.6",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"cac": "^6.5.2",
"chalk": "^2.4.2",
"chokidar": "^3.0.1",
"commitizen": "^3.1.1",
"conventional-changelog-cli": "^2.0.21",
"css-loader": "^3.0.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-jest": "^22.7.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-vue": "^5.2.3",
"execa": "^2.0.3",
"fs-extra": "^8.0.1",
"globby": "^9.2.0",
"hammerjs": "^2.0.8",
"html-webpack-plugin": "^3.2.0",
"husky": "^2.5.0",
"inquirer": "^6.5.0",
"jest": "^24.8.0",
"lint-staged": "^8.2.1",
"lru-cache": "^5.1.1",
"marked": "^0.6.3",
"normalize.css": "^8.0.1",
"portfinder": "^1.0.20",
"prettier": "^1.18.2",
"prismjs": "^1.16.0",
"semver": "^6.2.0",
"vue": "^2.6.10",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.35.0",
"webpack-chain": "^6.0.0",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {}
}