-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.34 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
{
"name": "trigger-mybinder-build",
"version": "1.0.1",
"private": true,
"description": "Github Action to trigger repo builds at mybinder.org",
"main": "dist/index.js",
"scripts": {
"test_build": "tsc",
"watch_test_build": "tsc -w",
"package": "ncc build src/main.ts -o dist",
"release-compare-file": "ncc build src/main.ts -o compare",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "tslint src/*",
"execute": "ncc run src/main.ts",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/s-weigand/trigger-mybinder-build"
},
"keywords": [
"actions",
"node",
"setup"
],
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"author": "Sebastian Weigand",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.9.1",
"eventsource": "^2.0.2"
},
"devDependencies": {
"@types/eventsource": "^1.1.8",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.60",
"@zeit/ncc": "^0.22.3",
"jest": "^26.6.3",
"jest-circus": "^27.5.1",
"prettier": "^2.7.1",
"ts-jest": "^26.5.6",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.9.10"
}
}