generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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
{
"name": "@paritytech/rfc-propose",
"description": "A GitHub Action aiming to help in the creation of RFC proposal referenda.",
"version": "0.0.0",
"author": "Parity Technologies <admin@parity.io> (https://parity.io)",
"private": true,
"homepage": "https://github.com/paritytech/rfc-propose",
"repository": {
"type": "git",
"url": "git+https://github.com/paritytech/rfc-propose.git"
},
"bugs": {
"url": "https://github.com/paritytech/rfc-propose/issues"
},
"keywords": [
"substrate",
"rfc"
],
"main": "dist/index.js",
"engines": {
"node": "^22"
},
"scripts": {
"lint": "yarn eslint --quiet '{*,**/*}.{js,ts}' && yarn prettier --check '{*,**/*}.json'",
"fix:eslint": "eslint --fix",
"fix:prettier": "prettier --write",
"fix": "yarn fix:eslint '{*,**/*}.{js,ts}' && yarn fix:prettier '{*,**/*}.json'",
"package": "ncc build src/index.ts --license licenses.txt",
"package:watch": "npm run package -- --watch",
"test": "jest"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@eng-automation/js": "^2.2.0",
"@octokit/graphql-schema": "^14.39.0",
"@polkadot/api": "^10.9.1"
},
"devDependencies": {
"@eng-automation/js-style": "^3.1.0",
"@octokit/webhooks-types": "^7.2.0",
"@types/jest": "^29.5.4",
"@types/node": "^22.10.5",
"@vercel/ncc": "^0.36.1",
"jest": "^29.6.2",
"js-yaml": "^4.1.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}