This repository has been archived by the owner on Jan 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.82 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
{
"name": "nertivia-bot",
"version": "0.1.9-1",
"description": "Nertivia bot library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -r -f ./dist/ && tsc",
"lint": "eslint ./src/**/*.ts",
"test": "tsc --noEmit true && npm run lint",
"docs": "rm -r -f ./docs/ && typedoc --options ./typedoc.json"
},
"author": "Toby",
"license": "ISC",
"devDependencies": {
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"eslint": "^7.5.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"typedoc": "^0.17.8",
"typedoc-plugin-sourcefile-url": "^1.0.6",
"typescript": "^3.9.7"
},
"dependencies": {
"lexure": "^0.17.0",
"nertivia.js": "git://github.com/toman222/nertivia.js.git#build"
},
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toman222/nertivia-bot.git"
},
"bugs": {
"url": "https://github.com/toman222/nertivia-bot/issues"
},
"homepage": "https://github.com/toman222/nertivia-bot#readme",
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"rules": {
"@typescript-eslint/no-unused-vars": [
"warn",
{
"args": "all",
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"@typescript-eslint/no-empty-function": "off",
"tsdoc/syntax": "warn"
},
"extends": [
"eslint:recommended",
"standard",
"plugin:@typescript-eslint/recommended"
],
"plugins": [
"@typescript-eslint/eslint-plugin",
"eslint-plugin-tsdoc"
]
}
}