-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
113 lines (113 loc) · 3 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
108
109
110
111
112
113
{
"name": "a3-cli",
"version": "1.0.1",
"description": "AtCoder でACしたソースコードをGitHub上 or ローカルに保存します",
"type": "module",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": {
"a3": "./lib/cli.js"
},
"engines": {
"node": ">= 12.2.0"
},
"license": "MIT",
"author": {
"name": "ivgtr",
"email": "[email protected]",
"url": "https://github.com/ivgtr"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivgtr/atcoder-ac-archive.git"
},
"homepage": "https://github.com/ivgtr/atcoder-ac-archive#readme",
"bugs": {
"url": "https://github.com/ivgtr/atcoder-ac-archive/issues"
},
"files": [
"README.md",
"LICENSE",
"package.json",
"lib"
],
"scripts": {
"test": "mocha",
"workflow": "node --loader ts-node/esm ./src/index.ts",
"watch": "tsc -w",
"dev:workflow": "node --loader ts-node/esm ./src/index.ts",
"dev:cli": "node --loader ts-node/esm ./src/cli.ts",
"type-check": "tsc --noEmit",
"prebuild": "node -e 'fs.rmSync(`lib`, {recursive:true, force:true})'",
"build": "rollup -c && tsc --emitDeclarationOnly -p tsconfig-build.json",
"format": "prettier -w ./src/*",
"lint": "eslint ./src/**/*.ts",
"prepare": "is-ci || husky install"
},
"devDependencies": {
"@babel/core": "7.17.10",
"@babel/preset-env": "7.17.10",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "21.1.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-replace": "3.1.0",
"@rollup/plugin-typescript": "8.3.2",
"@types/chai": "4.3.1",
"@types/mocha": "9.1.1",
"@types/node": "16.11.33",
"@types/prompts": "2.0.14",
"@types/sinon": "10.0.11",
"@types/update-notifier": "5.1.0",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"chai": "4.3.6",
"eslint": "8.15.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-config-sumikko": "1.2.2",
"husky": "6.0.0",
"lint-staged": "12.4.1",
"mocha": "9.2.2",
"prettier": "2.6.2",
"rollup": "2.72.1",
"rollup-plugin-auto-external": "2.0.0",
"rollup-plugin-node-externals": "3.1.2",
"rollup-plugin-preserve-shebang": "1.0.1",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-visualizer": "5.6.0",
"sinon": "12.0.1",
"ts-node": "10.7.0",
"typescript": "4.6.4"
},
"dependencies": {
"axios": "0.27.2",
"cheerio": "1.0.0-rc.10",
"commander": "8.3.0",
"dotenv": "10.0.0",
"lang2extension": "0.1.4",
"lowdb": "3.0.0",
"open": "8.4.0",
"ora": "6.1.0",
"prompts": "2.4.2",
"simple-git": "3.7.1",
"update-notifier": "5.1.0"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write"
]
},
"mocha": {
"extension": [
"js",
"jsx",
"ts",
"tsx"
],
"spec": [
"tests/**/**.{js,ts,jsx,tsx}"
],
"loader": "ts-node/esm"
}
}