-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.59 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
{
"webpackConfigJaid": "nodeLib",
"version": "2.0.0",
"author": "Jaid <jaid.jsx@gmail.com> (https://github.com/Jaid)",
"dependencies": {
"@actions/core": "^1.8.2"
},
"devDependencies": {
"babel-jest": "^28.1.0",
"babel-preset-jaid": "^14.0.0",
"browserslist-config-jaid-node": "^3.0.0",
"eslint": "^8.16.0",
"eslint-config-jaid": "^1.59.1",
"jest": "^28.1.0",
"rimraf": "^3.0.2",
"webpack-config-jaid": "^16.1.1"
},
"scripts": {
"clean": "rimraf dist/",
"babel:prod": "rimraf dist/transpiled/production && NODE_ENV=production babel --out-dir dist/transpiled/production --source-maps true src",
"babel:dev": "rimraf dist/transpiled/development && NODE_ENV=development babel --out-dir dist/transpiled/development src",
"babel:test": "rimraf dist/transpiled/test && NODE_ENV=test babel --out-dir dist/transpiled/test src",
"build:prod": "NODE_ENV=production webpack",
"build:dev": "NODE_ENV=development webpack",
"test": "echo No test needed",
"prepareActionJest": "npm run build:prod"
},
"name": "get-boolean-action-input",
"description": "GitHub Actions getInput() wrapper that returns a boolean.",
"funding": "https://github.com/sponsors/jaid",
"repository": {
"type": "git",
"url": "https://github.com/jaid/get-boolean-action-input"
},
"homepage": "https://github.com/Jaid/get-boolean-action-input",
"keywords": [
"action",
"actions",
"boolean",
"get-input",
"github",
"github-action",
"github-actions",
"input",
"lib",
"library",
"util",
"utility"
],
"type": "module"
}