forked from baizn/translation.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.82 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
{
"name": "translation.js",
"version": "0.5.1",
"description": "集成多种翻译引擎、提供统一的翻译接口。",
"repository": {
"type": "git",
"url": "https://github.com/Selection-Translator/translation.js.git"
},
"main": "dist/translator.common.js",
"module": "dist/translator.esm.js",
"unpkg": "dist/translator.js",
"types": "declaration/src/index.d.ts",
"files": [
"src",
"dist",
"declaration/src"
],
"scripts": {
"dev": "rollup -c build/dev.js -w",
"lint": "tslint --type-check --project tsconfig.json 'src/**/*.ts' 'test/**/*.ts'",
"build": "node build/build",
"pretest": "node build/replace-es6-import",
"test": "nyc jasmine JASMINE_CONFIG_PATH=jasmine.json",
"posttest": "node build/revert-es6-import"
},
"nyc": {
"require": [
"ts-node/register"
],
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"reporter": [
"html",
"lcov"
]
},
"dependencies": {
"@types/blueimp-md5": "^2.7.0",
"@types/superagent": "^3.5.5",
"blueimp-md5": "^2.10.0",
"superagent": "^3.6.0"
},
"devDependencies": {
"@types/jasmine": "^2.6.0",
"@types/nock": "^8.2.1",
"coveralls": "^2.13.1",
"fs-extra": "^4.0.2",
"jasmine": "^2.8.0",
"jasmine-core": "^2.8.0",
"nock": "^9.0.17",
"nyc": "^11.2.1",
"rollup": "^0.50.0",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-serve": "^0.4.1",
"rollup-plugin-typescript2": "^0.5.0",
"rollup-watch": "^4.3.1",
"ts-node": "^3.3.0",
"tslint": "^5.6.0",
"tslint-config-standard": "^6.0.1",
"uglify-js": "^3.1.1"
},
"author": "Milk Lee <[email protected]>",
"homepage": "https://github.com/Selection-Translator/translation.js#readme",
"license": "MIT"
}