-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.48 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
{
"name": "vue-separate-files-webpack-loader",
"version": "0.0.0-development",
"description": "Vue separated components loader for Webpack",
"main": "index.js",
"author": "Michal Szajter <michal@szajter.cz>",
"license": "MIT",
"homepage": "https://github.com/NetCZ/vue-separate-files-webpack-loader",
"repository": {
"type": "git",
"url": "https://github.com/NetCZ/vue-separate-files-webpack-loader.git"
},
"bugs": {
"url": "https://github.com/NetCZ/vue-separate-files-webpack-loader/issues"
},
"keywords": [
"vue",
"webpack",
"loader",
"separate",
"component"
],
"scripts": {
"test": "mocha",
"test:cov": "nyc --reporter=text-lcov yarn test | coveralls",
"semantic-release": "semantic-release",
"snyk-protect": "snyk protect",
"prepublishOnly": "yarn snyk-protect"
},
"husky": {
"hooks": {
"pre-commit": "yarn test",
"commit-msg": "commitlint -e"
}
},
"dependencies": {
"create-html-element": "^3.0.0",
"loader-utils": "^2.0.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@commitlint/travis-cli": "^8.3.5",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"husky": "^4.2.5",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"semantic-release": "^17.0.7",
"snyk": "^1.316.2"
},
"resolutions": {
"lodash": "^4.17.15",
"minimist": "^1.2.5",
"mem": "^6.1.0"
},
"snyk": true
}