-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.31 KB
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
{
"name": "begin-linting",
"version": "0.1.0",
"description": "Standardized linting configurations for Beg.in projects",
"engines": {
"node": ">=7.6"
},
"main": "base.js",
"scripts": {
"lint": "eslint --ignore-path .gitignore --format=node_modules/eslint-formatter-pretty ./",
"cz": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"docs": "jsdoc2md --template docs.hbs --files *.js > README.md"
},
"repository": "Beg-in/begin-linting",
"author": {
"name": "Beg.in",
"email": "info@beg.in",
"url": "http://beg.in"
},
"contributors": [
"Brian Jesse <brian.jesse@gmail.com> (brianjesse.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Beg-in/begin-linting/issues"
},
"homepage": "https://github.com/Beg-in/begin-linting#readme",
"dependencies": {
"commitizen": "2.9.6",
"conventional-changelog-cli": "1.3.1",
"eslint": "3.19.0",
"eslint-config-airbnb-base": "11.2.0",
"eslint-formatter-pretty": "1.1.0",
"eslint-plugin-ava": "4.2.0",
"eslint-plugin-import": "2.3.0",
"jsdoc-to-markdown": "3.0.0",
"pug-lint": "2.4.0",
"pug-lint-config-clock": "2.0.0",
"puglint-stylish": "0.1.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}