-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
72 lines (72 loc) · 1.65 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
{
"name": "generator-travis",
"version": "1.10.0",
"description": "Yeoman generator to get and keep `.travis.yml` up-to-date effortlessly",
"license": "MIT",
"main": "generators/app/index.js",
"repository": "iamstarkov/generator-travis",
"author": {
"name": "Vladimir Starkov",
"email": "[email protected]",
"url": "https://iamstarkov.com"
},
"scripts": {
"precommit": "lint-staged",
"commit": "git-cz",
"commitmsg": "validate-commit-msg",
"test": "mocha",
"tdd": "npm test -- --watch",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"files": [
"generators"
],
"keywords": [
"yeoman-generator",
"boilerplate",
"node",
"starter",
"kit",
"yeoman",
"plugin",
"boilerplate",
"template",
"scaffold",
"module",
"node_module",
"node-module",
"travis",
"javascript",
"npm"
],
"czConfig": {
"path": "cz-conventional-changelog"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
},
"dependencies": {
"got": "^8.0.1",
"js-yaml": "^3.10.0",
"merge-and-concat": "^1.0.2",
"ramda": "^0.25.0",
"sort-object": "^3.0.2",
"travis-config-keys": "^1.0.3",
"yeoman-generator": "^2.0.2"
},
"devDependencies": {
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"husky": "^0.14.0",
"lint-staged": "^6.0.0",
"mocha": "^4.0.0",
"prettier": "^1.2.2",
"semantic-release": "^11.0.2",
"validate-commit-msg": "^2.12.1",
"yeoman-assert": "^3.0.0",
"yeoman-test": "^1.6.0"
}
}