-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 875 Bytes
/
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
{
"name": "ntrans",
"version": "0.3.0",
"description": "Yet another Chinese-English translation tool written in Node.",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:SFantasy/node-translator.git"
},
"keywords": [
"translate",
"fanyi",
"youdao",
"dictionary"
],
"author": [
{
"name": "fantasy",
"email": "[email protected]",
"url": "http://blog.fantasy.codes"
}
],
"bin": {
"ntrans": "./bin/ntrans"
},
"scripts": {
"build": "./node_modules/.bin/babel source.es6 --out-file compiled.js",
"build-watch": "./node_modules/.bin/babel source.es6 --out-file compiled.js --watch"
},
"license": "MIT",
"dependencies": {
"colors": "^1.0.3",
"commander": "^2.5.0",
"request": "^2.51.0"
},
"devDependencies": {
"babel": "^5.1.11"
}
}