-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.29 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
{
"name": "twtxt-cli",
"version": "0.0.30",
"description": "twtxt command line interface",
"main": "src/index.js",
"engines": {
"node": "16.18.0"
},
"scripts": {
"start": "node src/index.js",
"lint": "eslint src",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/batyshkaLenin/twtxt-cli.git"
},
"keywords": [
"twtxt"
],
"bin": {
"twtxt-cli": "src/index.js"
},
"author": {
"name": "Alexandr Sidorenko",
"url": "https://alexandr-sidorenko.me/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/batyshkaLenin/twtxt-cli/issues"
},
"homepage": "https://github.com/batyshkaLenin/twtxt-cli#readme",
"dependencies": {
"axios": "^1.2.2",
"blake2": "^4.1.1",
"bluebird": "^3.7.2",
"commander": "^9.4.1",
"debug": "^4.3.4",
"luxon": "^3.2.1",
"moment": "^2.29.4",
"publish": "^0.6.0",
"to-data-view": "^2.0.0"
},
"devDependencies": {
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
},
"lint-staged": {
"*.{js}": "eslint --fix",
"*.{js,json,md}": "prettier"
}
}