-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 1.1 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
{
"name": "@dolittle/github-actions.establish-context-action",
"private": true,
"version": "1.0.0",
"description": "",
"license": "MIT",
"main": "Distribution/action.js",
"scripts": {
"build": "tsc -b && yarn test:clean && npx ncc build Distribution/action.js --out release",
"build:ci": "tsc -b && yarn lint",
"test": "mocha",
"test:clean": "rimraf Distribution/**/for_*",
"lint": "eslint --quiet --ext .ts ./",
"lint:fix": "eslint --quiet --ext .ts ./ --fix",
"ci": "yarn build:ci && yarn test && yarn test:clean && npx ncc build Distribution/action.js --out release"
},
"devDependencies": {
"@dolittle/typescript.build": "6.0.2",
"@dolittle/typescript.testing": "6.0.2",
"rimraf": "3.0.2",
"@types/semver": "7.3.13",
"@vercel/ncc": "0.34.0",
"del-cli": "5.0.0",
"reflect-metadata": "0.1.13",
"ts-sinon": "2.0.2"
},
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.1.1",
"@dolittle/github-actions.shared.logging": "1.1.1",
"@dolittle/github-actions.shared.rudiments": "1.1.1",
"semver": "7.3.8"
}
}