-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 953 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
{
"name": "tsint",
"version": "1.0.1",
"description": "translate in terminal",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"dev": "npm run build && node dist/index.js",
"local": "npm run build && npm link",
"unLocal": "npm unlink"
},
"bin": {
"tsint": "./dist/index.js"
},
"author": "baihaihui",
"license": "ISC",
"dependencies": {
"colors": "^1.3.3",
"commander": "^2.20.0",
"md5": "^2.2.1",
"request": "^2.88.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-plugin-module-resolver": "^3.2.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"rimraf": "^2.7.1"
}
}