-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 761 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 761 Bytes
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
{
"name": "wordnik-api",
"version": "0.1.6",
"description": "Community API for https://wordnik.com with types",
"main": "dist/index.js",
"scripts": {
"update": "yarn && tsc && npm version patch && typedoc src/ && git push && npm publish",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"wordnik",
"api"
],
"author": "Alexander Epolite <alexander@epolite.net>",
"contributors": [
{
"name": "Alexander Epolite",
"email": "alexander@epolite.net",
"url": "https://epolite.net"
}
],
"license": "Unlicense",
"dependencies": {
"node-fetch": "^2.6.7",
"tslib": "^2.4.0"
},
"devDependencies": {
"@types/node": "^17.0.33",
"@types/node-fetch": "^2.6.1"
}
}