-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
55 lines (55 loc) · 1.49 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
47
48
49
50
51
52
53
54
55
{
"name": "unofficial-jisho-api",
"version": "2.3.4",
"description": "Encapsulates the official Jisho.org API and also provides kanji, example, and stroke diagram search.",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"scripts": {
"buildcjs": "rollup index.js --file index.cjs --format cjs",
"prepublishOnly": "npm run buildcjs",
"create_test_cases": "node ./test/create_test_cases.js",
"test": "./node_modules/.bin/mocha ./test/run_tests.js --exit",
"coverage": "c8 --reporter=lcov --reporter=text npm run test",
"document": "./node_modules/.bin/jsdoc --configure .jsdoc.json ./index.js -d ./docs -R README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mistval/unofficial-jisho-api.git"
},
"keywords": [
"jisho",
"kanji",
"japanese",
"word",
"search",
"stroke",
"order",
"diagrams"
],
"author": "mistval",
"license": "MIT",
"bugs": {
"url": "https://github.com/mistval/unofficial-jisho-api/issues"
},
"homepage": "https://github.com/mistval/unofficial-jisho-api#readme",
"dependencies": {
"axios": "^1.6.0",
"cheerio": "^1.0.0-rc.10",
"escape-string-regexp": "^1.0.5",
"html-entities": "^1.2.1"
},
"devDependencies": {
"c8": "^9.1.0",
"chai": "^4.2.0",
"codecov": "^3.5.0",
"docdash": "^2.0.1",
"jsdoc": "^4.0.0",
"mocha": "^10.2.0",
"rollup": "^3.29.5"
}
}