-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.43 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
{
"name": "eslint-config-valorsoft",
"version": "0.1.0",
"description": "Valor Software's ESLint config, following our styleguide",
"main": "index.js",
"scripts": {
"flow.changelog": "./node_modules/.bin/conventional-changelog -i CHANGELOG.md -s -p angular -v",
"flow.github-release": "./node_modules/.bin/conventional-github-releaser -p angular",
"flow.lint": "./node_modules/.bin/eslint --ignore-path .gitignore --ext js --fix . .config",
"test": "npm run flow.lint && ./node_modules/.bin/mocha",
"preversion": "npm test",
"version": "npm run flow.changelog && git add -A",
"postversion": "git push origin master && git push --tags"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/valor-software/eslint-config-valorsoft.git"
},
"keywords": [
"styleguide",
"javascript",
"valor",
"valor-software",
"config",
"eslintconfig",
"eslint"
],
"author": "Dmitriy Shekhovtsov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/valor-software/eslint-config-valorsoft/issues"
},
"homepage": "https://github.com/valor-software/eslint-config-valorsoft#readme",
"dependencies": {
"eslint": "3.0.1"
},
"devDependencies": {
"chai": "3.5.0",
"conventional-changelog-cli": "1.2.0",
"conventional-github-releaser": "1.1.3",
"mocha": "2.5.3",
"pre-commit": "1.1.3",
"strip-json-comments": "2.0.1"
}
}