-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "jojs",
"version": "1.0.5",
"description": "JoJS is a library to interact with the UDP API of AniDB",
"main": "./dist/AniDB.js",
"scripts": {
"test": "mocha -r ts-node/register test/**/*.test.ts --exit",
"clean": "rm -r dist",
"build": "eslint \"./src/**/*.ts\" && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ssd71/jojs.git"
},
"author": "ssd71",
"license": "MIT",
"bugs": {
"url": "https://github.com/ssd71/jojs/issues"
},
"homepage": "https://github.com/ssd71/jojs#readme",
"devDependencies": {
"@types/bluebird": "^3.5.27",
"@types/chai": "^4.2.1",
"@types/core-js": "^2.5.2",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.3",
"@types/node-cron": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"chai": "^4.2.0",
"eslint": "^6.3.0",
"eslint-config-google": "^0.13.0",
"mocha": "^6.2.0",
"ts-node": "^8.3.0",
"typedoc": "^0.15.0",
"typedoc-plugin-markdown": "^2.1.10",
"typescript": "^3.6.2"
},
"dependencies": {
"bluebird": "^3.5.5",
"core-js": "^3.2.1",
"node-cron": "^2.0.3"
}
}