forked from lifeomic/bitrise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.28 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
59
{
"name": "@lifeomic/bitrise",
"version": "0.7.0",
"description": "Bitrise API client",
"main": "src/client.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/lifeomic/bitrise.git"
},
"homepage": "https://github.com/lifeomic/bitrise#readme",
"author": "LifeOmic <development@lifeomic.com>",
"keywords": [
"bitrise"
],
"license": "MIT",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"pretest": "yarn lint",
"test": "nyc ava -v"
},
"dependencies": {
"axios": "^0.18.0",
"axios-retry": "^3.1.1",
"lodash": "^4.17.10",
"query-string": "^6.8.3"
},
"devDependencies": {
"@lifeomic/eslint-plugin-node": "^2.0.1",
"ava": "^2.4.0",
"coveralls": "^3.0.2",
"eslint": "^6.0.0",
"luxon": "^1.3.1",
"nock": "^11.3.3",
"nyc": "^12.0.2",
"sinon": "^7.4.2",
"uuid": "^3.3.2"
},
"ava": {
"failWithoutAssertions": false,
"files": [
"test/**/*.test.js"
]
},
"eslintConfig": {
"extends": "plugin:@lifeomic/node/recommended"
},
"nyc": {
"branches": 100,
"check-coverage": true,
"functions": 100,
"lines": 100,
"statements": 100
},
"publishConfig": {
"access": "public"
}
}