-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.39 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
{
"name": "duti",
"description": "Danger UTIlities",
"bin": {
"duti": "bin/duti"
},
"version": "0.15.3",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/smartprocure/duti.git"
},
"license": "MIT",
"scripts": {
"test": "jest",
"test:watch": "npm t -- --watch",
"test:ci": "npm t -- --coverage --json --outputFile=test-results.json",
"lint": "eslint . --ignore-path .gitignore",
"lint:ci": "npm run lint -- -o lint-results.json -f json",
"danger": "./bin/duti",
"duti:fix": "npm run lint -- --fix && npm run fmt",
"fmt": "prettier --write {*.js,{src,bin}/**/*.js} --no-semi --single-quote --trailing-comma es5"
},
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "es5"
},
"eslintConfig": {
"extends": "smartprocure",
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
},
"env": {
"node": true
}
},
"dependencies": {
"bluebird": "^3.5.0",
"cosmiconfig": "^2.2.2",
"futil": "^1.76.3",
"lodash": "^4.17.21",
"pkg-up": "^2.0.0",
"strip-ansi": "^4.0.0",
"underscore.string": "^3.3.4"
},
"devDependencies": {
"danger": "^6.1.13",
"eslint": "^4.12.1",
"eslint-config-smartprocure": "^1.2.0",
"jest": "^20.0.4",
"prettier": "^1.5.3"
},
"peerDependencies": {
"danger": "^6.0.0"
}
}