-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.34 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
{
"name": "i18n-cli",
"version": "0.2.0",
"description": "A lightweight (not asynchronous) i18n module for creating cli tools",
"main": "lib/index.js",
"scripts": {
"start": "example/index.js",
"deploy": "./bin/npm-deploy",
"build:clean": "rm -Rf ./lib",
"build:watch": "yarn build -- --watch",
"build": "babel ./src -s --out-dir lib",
"lint": "eslint src spec",
"test": "mocha --compilers js:babel-core/register ./spec",
"test:watch": "yarn test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/azukiapp/i18n-cli"
},
"keywords": [
"i18n",
"cli"
],
"author": "Everton Ribeiro <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/azukiapp/i18n-cli/issues"
},
"homepage": "https://github.com/azukiapp/i18n-cli",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.5.0",
"chai-things": "^0.2.0",
"eslint": "^4.3.0",
"mocha": "^3.5.0",
"source-map-support": "^0.4.0"
},
"dependencies": {
"ansi-styles": "^3.2.0",
"lodash.clone": "^4.5.0",
"lodash.template": "^4.4.0",
"sprintf-js": "^1.0.3",
"supports-color": "^4.2.1"
}
}