-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.92 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
{
"name": "disassemble-package",
"version": "0.0.0",
"description": "Separate the config contained in package.json into a file.",
"main": "index.js",
"homepage": "https://github.com/tanmen/disassemble-package#readme",
"repository": "https://github.com/tanmen/disassemble-package",
"funding": "https://github.com/sponsors/tanmen",
"author": "tanmen",
"license": "MIT",
"keywords": [
"package",
"package.json",
"disassemble",
"separate",
"decompose"
],
"bin": {
"disassemble-package": "cli.js"
},
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src --ext .ts,.tsx",
"postinstall": "husky install && typesync && yarn check --integrity || yarn install --ignore-scripts && yarn-deduplicate",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"presemantic-release": "yarn build && cp package.json README.md LICENSE dist",
"semantic-release": "semantic-release"
},
"dependencies": {
"chalk": "4.1.2",
"command-line-args": "^5.1.1",
"ora": "5.4.1"
},
"devDependencies": {
"@commitlint/cli": "^19.0.1",
"@commitlint/config-conventional": "^19.0.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/npm": "^12.0.0",
"@types/chalk": "2.2.0",
"@types/command-line-args": "^5.0.0",
"@types/eslint": "^8.2.0",
"@types/jest": "^27.0.0",
"@types/lint-staged": "^13.2.0",
"@types/ora": "^3.2.0",
"@types/semantic-release": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-config-google": "^0.14.0",
"husky": "^9.0.1",
"jest": "^26.6.3",
"lint-staged": "^15.0.1",
"pinst": "^3.0.0",
"semantic-release": "^24.0.0",
"ts-jest": "^26.5.4",
"typescript": "^4.2.4",
"typesync": "^0.14.0",
"yarn-deduplicate": "^6.0.0"
}
}