-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.48 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
{
"name": "@thesharks/jagtag-js",
"version": "2.0.0",
"description": "A JavaScript port of https://github.com/jagrosh/JagTag.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jest",
"test:lint": "eslint .",
"test:coverage": "jest --config jest.coverage.js",
"test:coverage:watch": "jest --watchAll --config jest.coverage.js",
"test:watch": "jest --watch",
"docs": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheSharks/JagTag-JS.git"
},
"author": "TheSharks",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheSharks/JagTag-JS/issues"
},
"homepage": "https://thesharks.github.io/JagTag-JS/",
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/js-levenshtein": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"codecov": "^3.8.2",
"eris": "^0.15.1",
"eslint": "^7.27.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-tsdoc": "^0.2.14",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
},
"dependencies": {
"date-fns": "^2.21.3",
"js-levenshtein": "^1.1.6"
}
}