forked from breezewish/pinyinlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.32 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
{
"name": "pinyinlite",
"version": "1.2.1",
"description": "Lightweight and Lightning-Fast Pinyin library",
"main": "index_full.js",
"browser": "dist/pinyinlite_common.min.js",
"scripts": {
"test": "mocha --check-leaks",
"test-travis": "istanbul cover ./node_modules/mocha/bin/_mocha --check-leaks",
"build": "webpack && webpack --env=production -p",
"benchmark": "node benchmark/run.js",
"benchmark:asm": "node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=benchmark/v8_code.asm --print-opt-code benchmark/v8_sample.js",
"gen:dict": "node dev/parseDictionary.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/breeswish/pinyinlite.git"
},
"keywords": [
"pinyin",
"拼音"
],
"author": "Breezewish",
"license": "MIT",
"bugs": {
"url": "https://github.com/breeswish/pinyinlite/issues"
},
"homepage": "https://github.com/breeswish/pinyinlite#readme",
"devDependencies": {
"coveralls": "^2.11.6",
"istanbul": "^0.4.2",
"lodash.sortedindexof": "^4.1.0",
"lodash.sorteduniq": "^4.2.0",
"mocha": "^3.2.0",
"request": "^2.79.0",
"request-promise-native": "^1.0.3",
"should": "^11.2.0",
"webpack": "^1.14.0",
"yargs": "^6.6.0"
}
}