-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 776 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 776 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
{
"name": "is-chinese",
"version": "2.0.0",
"description": "assert whether a string is chinese",
"main": "dist/is_chinese.js",
"scripts": {
"test": "mocha --require ts-node/register test/*",
"benchmark": "ts-node benchmark.ts",
"build": "tsc",
"dev": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git@github.com:alsotang/is-chinese.git"
},
"keywords": [
"chinese",
"assert"
],
"author": "alsotang <alsotang@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/benchmark": "^2.1.2",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.0",
"benchmark": "^2.1.4",
"chai": "^4.3.7",
"jest": "^29.3.1",
"mocha": "^10.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}