-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.24 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
{
"name": "chinese-data",
"scripts": {
"start": "node --require babel-core/register ./index.js",
"test": "ava test",
"precommit": "lint-staged npm test"
},
"dependencies": {
"ava": "0.18.x",
"jsonfile": "2.4.x",
"punycode": "^2.1.0"
},
"devDependencies": {
"babel-core": "6.24.x",
"babel-loader": "6.4.x",
"babel-plugin-transform-runtime": "6.23.x",
"babel-preset-es2015": "6.24.x",
"babel-preset-stage-2": "6.22.x",
"babel-runtime": "6.23.x",
"csv2json": "^1.3.0",
"eslint": "^3.18.0",
"eslint-config-airbnb-base": "^11.1.2",
"eslint-config-prettier": "^1.5.0",
"eslint-plugin-import": "^2.2.0",
"husky": "0.13.x",
"lint-staged": "3.4.x",
"prettier": "0.22.x"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"babel": {
"presets": [
"es2015",
"stage-2"
],
"plugins": [
"transform-runtime"
],
"comments": false
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"repository": "[email protected]:parlr/chinese-data.git",
"author": "Édouard Lopez",
"license": "MIT",
"version": "0.1.0",
"description": "Extract data from unihan",
"main": "index.js"
}