forked from lightstep/lightstep-action-predeploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 791 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
{
"name": "lightstep-action-predeploy",
"version": "0.2.6",
"description": "GitHub Action to see service health, reported errors, and on-call information in pull requests.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"build": "ncc build index.js -o dist --source-map",
"test": "jest",
"all": "npm run lint && npm run prepare && npm run test"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"js-yaml": "^3.14.0",
"lightstep-js-sdk": "git://github.com/lightstep/lightstep-js-sdk.git",
"lodash.template": "^4.5.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",
"eslint": "^7.12.1",
"jest": "^26.6.1"
}
}