-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 925 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 925 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
{
"name": "netlify-travis-proxy",
"version": "1.0.0",
"description": "",
"main": "handler.js",
"dependencies": {
"crypto": "^1.0.1",
"qs": "^6.5.1",
"request": "^2.83.0"
},
"devDependencies": {
"ava": "^0.24.0",
"codecov": "^3.0.0",
"eslint": "^4.14.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-ava": "^4.4.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"husky": "^0.14.3",
"mock-require": "^2.0.2",
"nyc": "^11.4.1",
"serverless": "^1.25.0",
"sinon": "^4.1.3"
},
"scripts": {
"coverage": "nyc yarn test",
"deploy": "serverless deploy",
"lint": "eslint .",
"precommit": "yarn lint && yarn test",
"test": "ava",
"test:ci": "yarn coverage && nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"engines": {
"node": ">=12.14.0"
},
"author": "",
"license": "ISC"
}