-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 999 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 999 Bytes
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
{
"name": "crusca-cli",
"version": "1.1.1",
"description": "Node.js command line client for crusca, the ES6 compatible gettext alternative to extract translation strings",
"scripts": {
"compile": "babel src --out-dir lib/",
"prepublish": "npm run compile",
"test": "mocha --compilers js:babel-register"
},
"bin": "./bin/crusca-cli.js",
"keywords": [
"template strings",
"template literals",
"gettext",
"crusca",
"translations",
"i18n",
"l10n",
"es6"
],
"author": "Domenico Matteo <matteo.domenico@gmail.com>",
"license": "MIT",
"dependencies": {
"bluebird": "3.3.3",
"crusca": "0.1.1",
"graceful-fs": "4.1.3",
"recursive-readdir": "1.3.0",
"yargs": "4.2.0"
},
"devDependencies": {
"babel": "6.5.2",
"babel-cli": "6.6.0",
"babel-preset-es2015": "6.6.0",
"babel-register": "6.6.5",
"mocha": "2.4.5",
"sinon": "1.17.3",
"unexpected": "10.10.4",
"unexpected-sinon": "10.1.1"
}
}