-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.34 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@wow-actions/parse-inputs",
"version": "2.0.1",
"description": "Utility method to parse action's inputs",
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"files": [
"es",
"lib"
],
"keywords": [
"parse",
"action",
"inputs"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "eslint 'src/**/*.{js,ts}?(x)' --fix",
"clean": "rimraf es lib",
"build:esm": "tsc --module esnext --target es2017 --outDir ./es",
"build:cjs": "tsc --module commonjs --target es5 --outDir ./lib",
"build": "run-p build:esm build:cjs",
"prebuild": "run-s lint clean",
"prepare": "is-ci || husky install .husky"
},
"lint-staged": {
"**/*.{js,jsx,tsx,ts,less,md,json}": [
"pretty-quick —-staged"
],
"*.ts": [
"eslint --fix"
]
},
"release": {
"extends": "@bubkoo/semantic-release-config"
},
"license": "MIT",
"author": {
"name": "bubkooo",
"email": "[email protected]"
},
"peerDependencies": {
"@actions/core": "^1.0.0"
},
"devDependencies": {
"@actions/core": "^1.10.0",
"@bubkoo/commitlint-config": "^1.0.1",
"@bubkoo/eslint-config": "^1.2.0",
"@bubkoo/semantic-release-config": "^1.3.0",
"@bubkoo/tsconfig": "^1.0.0",
"@types/js-yaml": "^4.0.5",
"@types/lodash.camelcase": "^4.3.7",
"@types/lodash.kebabcase": "^4.1.7",
"@types/lodash.snakecase": "^4.1.7",
"@types/lodash.uniq": "^4.5.7",
"@types/parse-json": "^4.0.0",
"eslint": "^8.22.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"tslib": "^2.4.0",
"typescript": "^4.8.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wow-actions/parse-inputs.git"
},
"bugs": {
"url": "https://github.com/wow-actions/parse-inputs/issues"
},
"homepage": "https://github.com/wow-actions/parse-inputs#readme",
"dependencies": {
"js-yaml": "^4.1.0",
"lodash.camelcase": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"lodash.snakecase": "^4.1.1",
"lodash.uniq": "^4.5.0",
"parse-json": "^6.0.2",
"strip-json-comments": "^5.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}