-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 974 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 974 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
35
36
37
38
39
40
41
{
"name": "historykana",
"version": "1.0.5",
"description": "Analyse Japanese Furigana from key input history",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir lib",
"watch": "babel src --out-dir lib -w",
"test": "npm run build && mocha",
"prepublish": "npm run build",
"lint": "eslint src/* test/*"
},
"babel": {
"presets": [
"es2015"
]
},
"files": [
"lib",
"index.js"
],
"repository": "https://github.com/inuscript/historykana.git",
"keywords": [],
"author": "inuscript",
"license": "MIT",
"dependencies": {
"compact-diff": "0.0.3",
"extend": "^3.0.0",
"just-typeof": "^3.1.1",
"regexp.escape": "^1.0.2"
},
"devDependencies": {
"babel-cli": "^6.5.0",
"babel-preset-es2015": "^6.3.13",
"eslint": "^3.16.1",
"eslint-config-standard": "^7.0.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.1.0",
"mocha": "^3.2.0"
}
}