-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 919 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
31
32
33
34
35
36
37
38
39
40
{
"name": "@andymenderunix/jisho-js",
"version": "0.0.1a",
"description": "JavaScript wrapper around the jisho.org search Web API.",
"main": "./src/jisho-js.js",
"type": "module",
"exports": {
"import": "./src/jisho-js.js",
"require": "./src/jisho-js.cjs"
},
"scripts": {
"test": "mocha test -R spec --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndyMender/jisho-js.git"
},
"keywords": [
"dictionary",
"japanese",
"jisho",
"kanji"
],
"author": "AndyMender",
"license": "BSD 3-Clause",
"bugs": {
"url": "https://github.com/AndyMender/jisho-js/issues"
},
"homepage": "https://github.com/AndyMender/jisho-js/#README",
"dependencies": {
"jsdoc": "^4.0.2",
"mocha": "^10.2.0",
"unit.js": "^2.1.1"
},
"devDependencies": {
"jsdoc": "^4.0.2",
"mocha": "^10.2.0",
"unit.js": "^2.1.1"
}
}