-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 KB
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
{
"name": "@js-templates/github-action",
"version": "0.0.0-set-by-ci",
"description": "Your Github Action Description",
"author": "Your Name",
"main": "dist/index.js",
"exports": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/*"
],
"repository": "git@github.com:js-templates/github-action.git",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rollup -c",
"dev": "yarn build --watch",
"test": "jest",
"test:watch": "yarn test --watchAll",
"lint": "eslint --ext .ts,.tsx src",
"lint:fix": "yarn lint --fix",
"prepare": "husky install"
},
"dependencies": {
"@actions/core": "^1.8.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/jest": "^27.5.1",
"@types/semver": "^7.3.9",
"esbuild": "^0.14.39",
"eslint-kit": "^3.0.2",
"husky": "^8.0.1",
"jest": "^28.1.0",
"jest-serializer-path": "^0.1.15",
"rollup": "^2.73.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-esbuild": "^4.9.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
}
}