-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.01 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
77
78
79
{
"name": "generator-bxd-oss",
"version": "0.0.0-development",
"description": "A generator for my open source projects",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/blackxored/generator-bxd-oss.git"
},
"keywords": [
"open source",
"blackxored",
"yeoman-generator",
"semantic-release",
"babel",
"webpack",
"travis",
"commitizen",
"commitlint",
"jest"
],
"engines": {
"node": ">= 6",
"npm": ">= 3"
},
"author": "Adrian Perez <adrian@adrianperez.org> (https://adrianperez.codes/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/blackxored/generator-bxd-oss/issues"
},
"homepage": "https://github.com/blackxored/generator-bxd-oss#readme",
"scripts": {
"commit": "commit",
"precommit": "lint-staged",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "eslint",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"test": "jest",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"jest --bail --findRelatedTests"
]
},
"config": {
"commitzen": {
"path": "@commitlint/prompt"
}
},
"dependencies": {
"chalk": "^2.3.0",
"lodash.kebabcase": "4.1.1",
"sort-package-json": "^1.7.1",
"yeoman-generator": "2.0.4"
},
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/config-conventional": "^6.1.3",
"all-contributors-cli": "^4.6.0",
"babel-eslint": "^8.2.1",
"commitizen": "^2.9.6",
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.3.2",
"eslint-plugin-prettier": "^2.2.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.0.4",
"prettier": "^1.8.1",
"semantic-release": "^15.1.7",
"travis-deploy-once": "^5.0.0"
}
}