-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 913 Bytes
/
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
{
"name": "wordnik-api-lib",
"version": "1.0.0",
"description": "A Deno library/module for Wordnik's API",
"main": "./lib/mod.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ArkhamCookie/deno-wordnik.git"
},
"bugs": {
"url": "https://github.com/ArkhamCookie/deno-wordnik/issues"
},
"scripts": {
"http:test": "./tests/http-status.js",
"clean": "rm -r ./static/out",
"jsdoc": "npm run clean ; jsdoc --configure ./jsdoc.json --destination ./static/out/"
},
"keywords": [],
"author": "ArkhamCookie <[email protected]> (https://theuntitledproject.dev)",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"eslint": "^8.53.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"jsdoc": "^4.0.2"
}
}