-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.52 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "icbm",
"version": "0.6.0",
"description": "Interactive Configurations Backup Manager",
"repository": {
"url": "https://github.com/kimxogus/icbm.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/kimxogus/icbm/issues/"
},
"engines": {
"node": ">=8"
},
"preferGlobal": true,
"author": {
"name": "Taehyun Kim",
"email": "[email protected]",
"url": "https://github.com/kimxogus"
},
"license": "MIT",
"bin": {
"icbm": "bin/icbm.js"
},
"scripts": {
"lint": "eslint . --ext js,ts src",
"lint:fix": "eslint . --ext js,ts --fix src",
"pretest": "rimraf testHome",
"test": "cross-env NODE_ENV=test ts-node scripts/test",
"prebuild": "npm run lint && npm run test && rimraf lib/*",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix ."
],
"*.{json,css,md}": [
"prettier --write"
]
},
"devDependencies": {
"@types/fs-extra": "^9.0.2",
"@types/jest": "^26.0.15",
"@types/node": "^12.19.2",
"@types/rc": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.1",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.6.1",
"lint-staged": "^10.5.0",
"prettier": "^2.1.2",
"prettier-eslint": "^11.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0"
},
"dependencies": {
"@octokit/rest": "^18.0.6",
"@types/json-stable-stringify": "^1.0.32",
"chalk": "^4.1.0",
"co": "^4.6.0",
"co-prompt": "^1.0.0",
"commander": "^6.2.0",
"fs-extra": "^9.0.1",
"json-stable-stringify": "^1.0.1",
"left-pad": "^1.1.3",
"lodash": "^4.17.20",
"mkdirp": "^1.0.4",
"rc": "^1.2.1",
"typescript": "^4.0.5"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": ".*/__tests__/.*\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"globals": {
"ts-jest": {
"diagnostics": true
}
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](lib|docs|node_modules|scripts)[/\\\\]"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}