-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.02 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.02 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
{
"name": "finn-js-code-style",
"version": "6.0.0-beta.1",
"description": "Config files for FINN JavaScript style",
"main": "lib/cli.js",
"bin": {
"finn-js-code-style": "./bin/finn-js-code-style"
},
"scripts": {
"test": "lab test/*.test.js && ./bin/finn-js-code-style --env=node bin lib",
"release:patch": "npm version patch && npm run push-package-publish",
"release:minor": "npm version minor && npm run push-package-publish",
"release:major": "npm version major && npm run push-package-publish",
"push-package-publish": "git push --follow-tags && npm publish"
},
"author": "FINN.no AS",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/finn-no/js-code-style"
},
"bugs": {
"url": "https://github.com/finn-no/js-code-style/issues"
},
"devDependencies": {
"expect": "^1.11.1",
"lab": "^10.2.0"
},
"dependencies": {
"eslint": "^2.8.0",
"eslint-config-finn": "^1.0.0-alpha.3",
"semver": "^5.1.0",
"yargs": "^3.26.0"
}
}