-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 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
45
46
{
"name": "node-derpi",
"version": "1.0.5",
"description": "A Derpibooru API wrapper for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/BytewaveMLP/node-derpi",
"author": {
"name": "Eliot Partridge",
"email": "[email protected]",
"url": "https://code.horse"
},
"scripts": {
"prepublishOnly": "yarn run build",
"build": "tsc && yarn run docs",
"test": "mocha -r ts-node/register test/*.ts",
"lint": "tslint --project .",
"docs": "typedoc --out ./docs --mode file"
},
"keywords": [
"derpibooru",
"api wrapper"
],
"license": "MIT",
"private": false,
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.5",
"@types/request": "^2.47.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"mocha": "^5.1.0",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"tslint-config-standard": "^7.0.0",
"tslint-eslint-rules": "^5.1.0",
"typedoc": "^0.15.3",
"typescript": "^3.7.3"
},
"dependencies": {
"json2typescript": "^1.0.5",
"request": "^2.85.0"
}
}