-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.44 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
56
57
58
59
60
{
"name": "kanji.js",
"version": "1.6.2",
"description": "漢字 search/lookup library for Node.js and browsers",
"keywords": [
"node",
"browser",
"kanji",
"漢字",
"search",
"lookup",
"kanjidic"
],
"homepage": "https://kanji.js.org",
"bugs": "https://github.com/eidoriantan/kanji.js/issues",
"license": "MIT",
"author": {
"name": "Adriane Justine Tan",
"email": "eidoriantan@gmail.com",
"url": "https://eidoriantan.me"
},
"contributors": [],
"main": "dist/kanji.min.js",
"types": "index.d.ts",
"directories": {
"example": "examples",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eidoriantan/kanji.js.git"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"lint": "standard",
"postlint": "git log -1 --format=%B | commitlint",
"pretest": "npm run lint && npm run build",
"test": "mocha test/index.js",
"clean": "rm -rf dist"
},
"dependencies": {
"fuzzyset.js": "^1.0.5",
"wanakana": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"mocha": "^10.1.0",
"rollup": "^2.33.1",
"rollup-plugin-terser": "^7.0.0",
"should": "^13.2.3",
"standard": "^17.0.0"
},
"standard": {
"ignore": ["src/**/*.min.mjs"]
}
}