This repository has been archived by the owner on Jan 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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": "node-zhycorp",
"version": "1.5.5",
"description": "A simple API wrapper for Zhycorp Nation Bot List, and written in TypeScript",
"repository": {
"type": "git",
"url": "git+https://github.com/zhycorp/node-zhycorp.git"
},
"bugs": {
"url": "https://github.com/zhycorp/node-zhycorp/issues"
},
"homepage": "https://github.com/zhycorp/node-zhycorp#readme",
"keywords": [
"zhycorp",
"api",
"wrapper"
],
"author": "Zhycorp",
"license": "AGPL-3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc",
"lint": "eslint --ignore-path .gitignore \"**/*.+(ts|js)\"",
"lint:fix": "eslint --ignore-path .gitignore \"**/*.+(ts|js)\" --fix",
"release": "standard-version",
"test": "yarn lint && yarn build"
},
"eslintConfig": {
"parserOptions": {
"project": [
"./tsconfig.json"
]
},
"extends": "@zhycorp/eslint-config/typescript"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"superagent": "^6.1.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.21",
"@types/node": "^15.0.0",
"@types/superagent": "^4.1.10",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"@zhycorp/eslint-config": "^3.0.0",
"eslint": "^7.8.1",
"rimraf": "^3.0.2",
"standard-version": "^9.0.0",
"typescript": "^4.0.2"
},
"engines": {
"node": ">=12.x"
}
}