-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.12 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
{
"name": "@kirbysayshi/idier",
"description": "Make your projects folder tidier",
"author": "Drew Petersen <kirbysayshi@gmail.com>",
"repository": "https://github.com/kirbysayshi/idier",
"version": "0.0.0",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "types",
"bin": "./cli",
"files": [
"cjs",
"esm",
"types",
"cli",
"LICENSE",
"README.md"
],
"scripts": {
"lint": "web-scripts lint",
"test": "web-scripts test",
"build": "web-scripts build",
"commit": "web-scripts commit",
"release": "web-scripts release",
"prepare": "web-scripts postinstall --threshold low"
},
"husky": {
"hooks": {
"commit-msg": "web-scripts commitmsg",
"pre-commit": "web-scripts precommit"
}
},
"devDependencies": {
"@kirbysayshi/ts-run": "^3.0.1",
"@spotify/web-scripts": "^6.2.0",
"husky": "^4.2.3"
},
"dependencies": {
"@types/mock-fs": "^4.10.0",
"mock-fs": "^4.11.0"
},
"resolutions": {
"mem": "^4.3.0",
"minimist": "^1.2.5"
}
}