-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
72 lines (72 loc) · 1.69 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
{
"name": "atcoder-cli",
"version": "2.2.0",
"description": "AtCoder command line tools",
"keywords": [
"atcoder",
"competitive-programming",
"cli"
],
"author": "Tatamo",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/Tatamo/atcoder-cli.git"
},
"bin": {
"acc": "bin/index.js"
},
"files": [
"bin/",
"schema/",
"package.json",
"LICENSE",
"README.md"
],
"scripts": {
"test": "jest",
"test-w": "jest --watchAll",
"build": "npm run clean && tsc && webpack --mode production",
"clean": "rimraf bin src/**/*.{js,d.ts}",
"watch:tsc": "tsc --watch",
"watch:webpack": "webpack --mode development --watch",
"watch": "tsc && npm-run-all -p watch:*",
"prepare": "npm run build"
},
"dependencies": {
"ajv": "^6.10.2",
"axios": "^0.21.1",
"commander": "^3.0.1",
"conf": "^5.0.0",
"fs-extra": "^8.1.0",
"inquirer": "^7.0.0",
"jsdom": "^15.1.1",
"mkdirp": "^0.5.1",
"query-string": "^6.8.3",
"typesafe-di": "^0.1.0",
"update-notifier": "^4.1.0"
},
"devDependencies": {
"@types/fs-extra": "^8.0.0",
"@types/inquirer": "6.5.0",
"@types/jest": "^24.0.18",
"@types/jsdom": "^12.2.4",
"@types/mkdirp": "^0.5.2",
"@types/mock-fs": "^3.6.30",
"@types/node": "^12.7.5",
"@types/update-notifier": "^4.1.0",
"jest": "^24.9.0",
"mock-fs": "^5.1.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"ts-jest": "^24.0.2",
"typescript": "^3.6.3",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8",
"webpack-node-externals": "^1.7.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}