forked from baizn/translation.js
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.46 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
{
"name": "translation-jsapi",
"version": "1.1.3",
"description": "集成多种翻译引擎并提供统一的翻译接口。",
"repository": {
"type": "git",
"url": "https://github.com/mylvghb/translation.git"
},
"main": "dist/tjs.node.common.js",
"module": "dist/tjs.node.es.js",
"browser": "dist/tjs.browser.es.js",
"unpkg": "dist/tjs.browser.js",
"types": "declaration/index.d.ts",
"files": [
"dist",
"declaration",
"chrome-youdao.js"
],
"scripts": {
"test": "mocha -r './tsnode.js' tests/**/*.test.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test",
"lint": "tslint --project tsconfig.json -t verbose",
"build": "node build/build",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@types/blueimp-md5": "^2.7.0",
"@types/node": "^9.3.0",
"blueimp-md5": "^2.18.0",
"ts-transformer-keys": "^0.4.2"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"fs-extra": "^9.0.1",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"rollup": "^2.28.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript2": "^0.27.2",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"tslib": "^2.0.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^4.0.3"
},
"homepage": "https://github.com/mylvghb/translation#readme",
"license": "MIT"
}