-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 876 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
36
37
38
39
40
41
{
"version": "0.1.0",
"license": "MIT",
"main": "lib/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsc && ncc build",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"lint": "yarn format"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "yarn format",
"pre-push": "yarn build"
}
},
"name": "nats-action",
"author": "onichandame",
"module": "dist/nats-action.esm.js",
"devDependencies": {
"@types/node": "^14.0.11",
"@types/randomstring": "^1.1.6",
"@zeit/ncc": "^0.22.1",
"husky": "^4.2.5",
"prettier-eslint": "9.0.1",
"typescript": "^3.9.5"
},
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/exec": "^1.0.4",
"randomstring": "^1.1.5"
}
}