-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
76 lines (76 loc) · 1.94 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
71
72
73
74
75
76
{
"name": "atool-l10n",
"version": "0.4.0",
"description": "automatical solution for generating localization resource using middlewares",
"author": "jaredleechn <[email protected]>",
"homepage": "https://github.com/ant-tool/atool-l10n",
"repository": {
"type": "git",
"url": "https://github.com/ant-tool/atool-l10n"
},
"bugs": {
"url": "https://github.com/ant-tool/atool-l10n/issues"
},
"license": "MIT",
"main": "index.js",
"files": [
"lib",
"bin"
],
"bin": {
"atool-l10n": "./bin/cli.js",
"atool-l10n-debug": "./bin/cli-debug.js"
},
"scripts": {
"start": "concurrently 'npm run dev' 'npm run doc'",
"build": "rm -rf lib && babel src --out-dir lib --ignore __tests__",
"dev": "./node_modules/.bin/babel src --out-dir lib --watch --ignore __tests__ -s",
"lint": "eslint --ext .js src",
"pub": "npm run build && npm publish",
"test": "npm run lint",
"doc": "atool-doc"
},
"dependencies": {
"@vitalets/google-translate-api": "^2.8.0",
"babel-polyfill": "^6.9.1",
"co": "~4.6.0",
"co-request": "~1.0.0",
"commander": "~2.9.0",
"ensure-dir": "^0.1.0",
"glob": "~7.0.3",
"inquirer": "~1.0.3",
"is-ali-env": "^0.1.2",
"loader-utils": "~0.2.15",
"query-string": "^4.2.2",
"resolve": "~1.1.7",
"spm-log": "~0.1.3"
},
"devDependencies": {
"atool-build": "^0.7.8",
"atool-doc": "0.x",
"babel-cli": "~6.6.5",
"babel-eslint": "^6.0.4",
"babel-plugin-add-module-exports": "~0.1.2",
"babel-preset-es2015": "~6.6.0",
"babel-preset-stage-0": "~6.5.0",
"concurrently": "^2.1.0",
"devtool": "^2.0.2",
"dora": "^0.3.2",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.3.0",
"pre-commit": "~1.1.2"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports"
]
},
"pre-commit": [
"lint"
]
}