-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
82 lines (82 loc) · 2.04 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "jaco",
"version": "4.0.0",
"description": "Japanese Character Optimizer.",
"main": "./index.js",
"module": "./index.js",
"types": "./index.d.ts",
"bin": "./bin/jaco",
"scripts": {
"build": "yarn build:esm; yarn build:cli",
"build:esm": "tsc",
"build:cli": "tsc --module commonjs ./bin/jaco-cli.ts",
"clean": "yarn clean:esm",
"clean:esm": "tsc --build --clean",
"lint": "eslint --fix --quiet **/*.ts",
"docs": "typedoc --mode modules --out docs jaco.ts",
"test": "jest ./test/* --coverage",
"coveralls": "yarn test && cat ./coverage/lcov.info | coveralls",
"cli": "./bin/jaco",
"prepare": "yarn clean; yarn build"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "./test/tsconfig.json"
}
},
"testMatch": [
"**/*.spec.(ts|tsx)"
]
},
"repository": {
"type": "git",
"url": "git@github.com:jaco-project/jaco-js.git"
},
"keywords": [
"japanese",
"javascript",
"string",
"character",
"katakana",
"hiragana",
"unicode",
"surrogate pair"
],
"author": "YusukeHirao",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaco-project/jaco-js/issues"
},
"homepage": "http://jaco-project.github.io/docs/",
"dependencies": {
"commander": "^2.15.1"
},
"devDependencies": {
"@ava/babel-preset-transform-test-files": "^5.0.0",
"@types/commander": "^2.12.2",
"@types/jest": "^24.0.12",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-eslint-comments": "^3.1.1",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-jsdoc": "^4.8.3",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.8.0",
"prettier": "^1.17.0",
"ts-jest": "^24.0.2",
"typedoc": "^0.14.2",
"typescript": "^3.4.5"
}
}