-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 927 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 927 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
32
33
34
{
"name": "jmdict-parser",
"version": "2.2.1",
"description": "Converts JMdict XML files into JSON",
"main": "lib/index.js",
"repository": "https://github.com/smachave/JMdict-Parser.git",
"author": "smachave",
"license": "Apache-2.0",
"scripts": {
"build": "babel src -d lib",
"postbuild": "chmod +x ./lib/index.js",
"prepublishOnly": "npm run build"
},
"bin": "./lib/index.js",
"dependencies": {
"commander": "^2.19.0",
"ink": "^2.0.5",
"ink-spinner": "^3.0.0",
"react": "^16.8.4",
"xml-escape": "^1.1.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"eslint": "^9.39.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4"
}
}