-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.69 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
61
62
63
64
65
66
67
{
"name": "eaw",
"version": "0.1.5",
"description": "The Node.js module to calculate the width of east Asian characters.",
"bin": "bin/eaw.js",
"main": "index.js",
"types": "index.d.ts",
"files": [
"bin",
"lib",
"browser.d.ts",
"browser.js",
"index.d.ts"
],
"engines": {
"node": ">=4"
},
"dependencies": {
"minimist": "^1.2.0"
},
"devDependencies": {
"@types/node": "^6.0.49",
"babel-preset-power-assert": "^1.0.0",
"babel-register": "^6.18.0",
"codecov": "^1.0.1",
"eslint": "^3.10.2",
"eslint-config-mysticatea": "^7.0.1",
"mocha": "^3.1.2",
"nyc": "^9.0.1",
"opener": "^1.4.2",
"power-assert": "^1.4.2",
"rimraf": "^2.5.4"
},
"scripts": {
"build": "node scripts/generate.js",
"clean": "rimraf .nyc_output coverage",
"codecov": "nyc report --reporter lcovonly && codecov",
"coverage": "nyc report --reporter lcov && opener coverage/lcov-report/index.html",
"lint": "eslint bin lib scripts \"*.js\"",
"postversion": "git push && git push --tags",
"pretest": "npm run lint",
"preversion": "npm run clean && npm test",
"test": "nyc --require babel-register -- mocha \"test/*.js\" --reporter progress --timeout 10000",
"watch": "npm run test -- --watch --growl"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mysticatea/eaw.git"
},
"keywords": [
"unicode",
"character",
"width",
"east",
"asian",
"text",
"string",
"transform",
"stream"
],
"author": "Toru Nagashima",
"license": "MIT",
"bugs": {
"url": "https://github.com/mysticatea/eaw/issues"
},
"homepage": "https://github.com/mysticatea/eaw#readme"
}