-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1018 Bytes
/
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
{
"name": "drone-secret",
"version": "0.0.2",
"description": "",
"main": "index.js",
"scripts": {
"test": "ava test -v",
"lint": "eslint .",
"precommit": "npm run lint && npm test"
},
"keywords": [
"drone",
"cli",
"secret"
],
"files": [
"index.js",
"lib.js",
"drone.js"
],
"bin": "index.js",
"author": "Evgeniy Shershnev <joshuan.chel@gmail.com>",
"license": "ISC",
"dependencies": {
"config-lookuper": "^1.1.1",
"debug": "^3.1.0",
"git-url-promise": "^1.0.1",
"got": "^8.3.0",
"js-yaml": "^3.10.0",
"lodash.get": "^4.4.2",
"lodash.uniq": "^4.5.0",
"merge-options": "^1.0.0",
"promise-serial": "^0.1.5"
},
"devDependencies": {
"ava": "^1.0.0-beta.3",
"eslint": "^4.18.2",
"eslint-config-iddqd": "^1.2.0",
"husky": "^0.14.3"
},
"eslintConfig": {
"env": {
"node": true,
"browser": false
},
"parserOptions": {
"ecmaVersion": 8
},
"extends": "iddqd/es6"
}
}