-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
83 lines (83 loc) · 1.93 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
{
"name": "nofan",
"version": "2.0.0-beta.1",
"description": "CLI for Fanfou",
"type": "module",
"bin": {
"nofan": "distribution/cli.js"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"files": [
"distribution"
],
"scripts": {
"build": "del-cli distribution && tsc && chmod +x distribution/cli.js",
"test": "xo && c8 ava -T 10m"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fanfoujs/nofan.git"
},
"author": "LitoMore",
"license": "MIT",
"bugs": {
"url": "https://github.com/fanfoujs/nofan/issues"
},
"homepage": "https://github.com/fanfoujs/nofan#readme",
"dependencies": {
"boxen": "^6.2.1",
"chalk-pipe": "^5.1.1",
"fanfou-sdk": "^5.0.0-beta.7",
"inquirer": "^8.2.4",
"is-wsl": "^2.2.0",
"just-snake-case": "^3.0.1",
"meow": "^10.1.2",
"moment": "^2.29.3",
"node-powershell": "^4.0.0",
"ora": "^6.1.0",
"terminal-link": "^3.0.0",
"timeago.js": "^4.0.2"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^2.0.0",
"@types/express": "^4.17.13",
"@types/inquirer": "^8.2.1",
"@types/node": "^17.0.30",
"@types/node-powershell": "^4.0.1",
"@types/test-listen": "^1.1.0",
"ava": "^4.2.0",
"c8": "^7.11.2",
"del": "^6.0.0",
"del-cli": "^4.0.1",
"execa": "^6.1.0",
"express": "^4.18.1",
"log-symbols": "^5.1.0",
"test-listen": "^1.1.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"xo": "^0.48.0"
},
"xo": {
"prettier": true,
"rules": {
"camelcase": "off",
"unicorn/no-process-exit": "off",
"@typescript-eslint/no-implicit-any-catch": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-member-access": "off"
}
},
"ava": {
"files": [
"test/*"
],
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
}
}