This repository has been archived by the owner on Dec 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.54 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
{
"name": "twcl",
"version": "1.5.3",
"description": "nodeで作られたcli上のtwitterクライアント",
"main": "./lib/index.js",
"preferGlobal": true,
"bin": {
"twcl": "./lib/index.js"
},
"scripts": {
"start": "tsc -w",
"prebuild": "rimraf lib",
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"keywords": [
"Twitter",
"cli"
],
"author": "ivgtr <gear.1112t.o@gmail.com> (https://github.com/ivgtr)",
"repository": {
"type": "git",
"url": "git://github.com:ivgtr/twcl.git"
},
"license": "MIT",
"dependencies": {
"axios": "^0.22.0",
"commander": "^6.0.0",
"dayjs": "^1.8.35",
"nedb": "^1.8.0",
"open": "^7.1.0",
"ora": "^5.0.0",
"pjson": "^1.0.9",
"prompts": "^2.3.2",
"update-notifier": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@types/inquirer": "^7.3.0",
"@types/nedb": "^1.8.10",
"@types/node": "^14.0.27",
"babel-preset-es2015-rollup": "^3.0.0",
"eslint": "^7.5.0",
"eslint-config-sumikko": "^0.0.4",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.26.5",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-preserve-shebang": "^1.0.1",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.27.2",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "eslint ./src/**/*.ts"
}
}
}