-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 886 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 886 Bytes
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
{
"name": "codeship-api",
"version": "0.1.2",
"description": "Node.js wrapper for Codeship",
"main": "index.js",
"scripts": {
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beauallison/codeship-api.git"
},
"keywords": [
"Codeship",
"CD",
"CI"
],
"author": "Beau Allison",
"license": "MIT",
"bugs": {
"url": "https://github.com/beauallison/codeship-api/issues"
},
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"_mocks_"
]
},
"homepage": "https://github.com/beauallison/codeship-api#readme",
"dependencies": {
"axios": "^0.18.0",
"lodash": "^4.17.10"
},
"devDependencies": {
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"jest": "^22.4.2",
"moxios": "^0.4.0"
}
}