-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 1.97 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
{
"name": "generator-es2017-npm-module",
"description": "Yeoman generator for starting es2017 npm module with Mocha, Isparta, Travis, Coveralls",
"license": "MIT",
"main": "generators/app/index.js",
"repository": {
"type": "git",
"url": "https://github.com/yanghuabei/generator-es2017-npm-module.git"
},
"author": {
"name": "yanghuabei",
"email": "yanghuabei@outlook.com",
"url": "https://github.com/yanghuabei"
},
"contributors": [
{
"name": "Eugene Obrezkov",
"email": "ghaiklor@gmail.com",
"url": "https://github.com/ghaiklor"
},
{
"name": "yanghuabei",
"email": "yanghuabei@outlook.com",
"url": "https://github.com/yanghuabei"
}
],
"scripts": {
"coveralls": "cat coverage/lcov.info | coveralls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "babel-node ./node_modules/.bin/isparta cover _mocha",
"prepublish": "yarn run compile",
"compile": "rm -rf generators && cp -R src generators && babel src/app/index.js --out-file generators/app/index.js",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"keywords": [
"yeoman-generator",
"boilerplate",
"scaffolder",
"npm",
"module",
"es2017",
"es6"
],
"dependencies": {
"yeoman-generator": "0.24.1",
"yosay": "1.x",
"snyk": "^1.88.0"
},
"devDependencies": {
"babel-cli": "*",
"babel-preset-es2017": "6.x",
"babel-preset-es2016": "6.x",
"babel-preset-es2015": "6.x",
"babel-preset-stage-0": "6.x",
"isparta": "*",
"coveralls": "2.11.6",
"cz-conventional-changelog": "^1.2.0",
"mocha": "3.x",
"semantic-release": "^4.3.5",
"yeoman-assert": "2.x",
"yeoman-test": "1.5.x"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"tag": "latest"
},
"release": {
"branch": "master"
},
"snyk": true
}