-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.14 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
{
"name": "@sinchang/12306cli",
"version": "0.0.2",
"description": "一个查询 12306 余票的命令行工具",
"repository": {
"url": "sinchang/12306-cli",
"type": "git"
},
"main": "src/cli.js",
"bin": {
"12306cli": "src/cli.js"
},
"scripts": {
"test:cov": "jest --coverage && npm run lint",
"test": "npm run lint && jest",
"lint": "standard",
"build": "bili --filename index"
},
"author": "sinchang <sinchangwen@gmail.com>",
"license": "MIT",
"jest": {
"testEnvironment": "node"
},
"babel": {
"env": {
"test": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
}
}
},
"dependencies": {
"axios": "^0.17.1",
"cac": "^4.3.4",
"cli-table2": "^0.2.0",
"inquirer": "^5.0.0",
"lodash.isobject": "^3.0.2",
"log-update": "^2.3.0",
"ora": "^1.3.0",
"update-notifier": "^2.3.0"
},
"devDependencies": {
"babel-preset-env": "^1.4.0",
"bili": "^0.17.0",
"jest-cli": "^19.0.0",
"standard": "^10.0.0"
}
}