-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.46 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
{
"name": "action-json",
"version": "1.1.0",
"description": "Github Action to read or write JSON files",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && ncc build src/index.ts -m -o dist",
"clean": "rimraf dist",
"test": "jest --no-cache --runInBand",
"test:cov": "jest --coverage --no-cache --runInBand",
"lint": "eslint --cache \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --cache --fix \"src/**/*.{js,jsx,ts,tsx}\"",
"reset": "rm -rf packages/**/node_modules node_modules && npm i",
"postinstall": "lefthook install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amochkin/action-json.git"
},
"keywords": [
"json",
"github",
"action"
],
"author": "amochkin",
"bugs": {
"url": "https://github.com/amochkin/action-json/issues"
},
"homepage": "https://github.com/amochkin/action-json#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"ferramenta": "^1.3.2"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@p8ec/shared": "^2.2.0",
"@types/jest": "^29.5.13",
"@vercel/ncc": "^0.38.2",
"commitlint": "^19.5.0",
"jest": "^29.7.0",
"lefthook": "^1.7.21",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"license": "MIT",
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}