-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
70 lines (70 loc) · 1.52 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "gha-populate-form-version",
"version": "2.0.2",
"description": "A github action populating the package version dropdown of a yaml form",
"license": "MIT",
"author": "ShaMan123",
"repository": "https://github.com/ShaMan123/gha-populate-form-version",
"type": "module",
"keywords": [
"actions",
"issue",
"form",
"issue forms",
"version",
"versions",
"dropdown",
"list"
],
"main": "dist/main.cjs",
"scripts": {
"start": "npm run build -- -w",
"build": "rollup -c",
"test": "mocha test/index.test.js",
"format": "prettier --write src/*.js src/**/*.js"
},
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.3",
"semver": "^7.3.7"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/node": "^7.8.4",
"@babel/preset-env": "^7.12.11",
"@octokit/webhooks-types": "^6.3.6",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.21",
"babel-jest": "^29.0.1",
"core-js": "3",
"dotenv": "^16.0.2",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"regenerator-runtime": "^0.13.3",
"rollup": "^2.78.1",
"rollup-plugin-node-externals": "^4.1.1"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"corejs": 3
}
]
]
},
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"tabWidth": 2
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/ShaMan123"
}
}