forked from coverallsapp/github-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 964 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
{
"name": "coveralls-action",
"version": "1.1.1",
"private": true,
"description": "Coveralls Github Action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"release": "git checkout -b releases && npm run build && npm prune --production && git commit -a 'prepared production release'"
},
"author": "Nick Merwin ([email protected])",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/dedent": "^0.7.0",
"@types/mocha": "^5.2.7",
"@types/node": "^13.9.2",
"@types/request": "^2.48.4",
"chai": "^4.2.0",
"dedent": "^0.7.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"sinon": "^7.4.1",
"source-map-support": "^0.5.13",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/exec": "^1.0.4",
"coveralls": "^3.0.13",
"request": "^2.88.0"
}
}