-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
{
"name": "yaml-i18n-brunch",
"version": "0.1.3",
"description": "Generate yaml format i18n translation files for your brunch project",
"main": "lib/index.js",
"engines": {
"node": ">=0.8.0"
},
"dependencies": {
"async": ">= 0.2 < 0.3",
"js-yaml": ">= 3.0 < 3.1",
"node.extend": ">= 1.0 < 1.1"
},
"devDependencies": {
"coffee-script": ">= 1.6 < 1.7",
"mocha": ">= 2.3 < 2.4",
"should": ">= 5.0 < 6.0"
},
"scripts": {
"prepublish": "rm -rf lib && coffee --bare --output lib/ src/",
"start": "coffee --bare --output lib/ src/",
"test": "npm start && ./node_modules/.bin/mocha",
"coverage": "rm -rf test/tmp && istanbul cover ./node_modules/.bin/_mocha && open ./coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git@github.com:ktmud/yaml-i18n-brunch.git"
},
"keywords": [
"brunch-plugin",
"i18n",
"brunch",
"yaml",
"translation"
],
"author": "ktmud <kissmud@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ktmud/yaml-i18n-brunch/issues"
},
"homepage": "https://github.com/ktmud/yaml-i18n-brunch"
}