-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 1.23 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
{
"name": "@dolittle/github-actions.the-action-name",
"private": true,
"version": "1.0.0",
"description": "",
"license": "MIT",
"main": "Distribution/action.js",
"scripts": {
"clean": "gulp clean --gulpfile node_modules/@dolittle/typescript.build/Gulpfile.js",
"build": "gulp build --gulpfile node_modules/@dolittle/typescript.build/Gulpfile.js",
"lint": "gulp lint --gulpfile node_modules/@dolittle/typescript.build/Gulpfile.js",
"lint:fix": "gulp lint-fix --gulpfile node_modules/@dolittle/typescript.build/Gulpfile.js",
"test": "gulp test --gulpfile node_modules/@dolittle/typescript.build/Gulpfile.js",
"test:run": "gulp test-run --gulpfile node_modules/@dolittle/typescript.build/Gulpfile.js",
"test:clean": "gulp test-clean --gulpfile node_modules/@dolittle/typescript.build/Gulpfile.js",
"release": "yarn build && yarn test:run && yarn test:clean && npx ncc build Distribution/action.js --out release"
},
"devDependencies": {
"@dolittle/typescript.build": "^5.3.6",
"@zeit/ncc": "^0.22.3",
"del-cli": "^3.0.1"
},
"dependencies": {
"@actions/core": "^1.2.4",
"@dolittle/github-actions.shared.logging": "^1.1.1",
"@dolittle/github-actions.shared.rudiments": "^1.1.1"
}
}