-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 1.75 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
77
{
"name": "tml-js",
"description": "Translation Markup Language for JavaScript",
"version": "1.0.11",
"author": {
"name": "Michael Berkovich",
"email": "[email protected]"
},
"maintainers": [
"Michael Berkovich <[email protected]>",
"Ian McDaniel <[email protected]>",
"Eli Rapoport <[email protected]>"
],
"bugs": {
"url": "https://github.com/translationexchange/tml-js/issues"
},
"homepage": "https://github.com/translationexchange/tml-js",
"repository": {
"type": "git",
"url": "https://github.com/translationexchange/tml-js.git"
},
"bin": {
"tml-js": "./bin/cli"
},
"license": "MIT",
"main": "./lib/tml",
"keywords": [
"internationalization",
"translation",
"localization",
"translate",
"localize",
"i18n",
"t9n",
"tr8n",
"l10n",
"tml",
"markup",
"language"
],
"directories": {
"test": "test",
"doc": "doc"
},
"engines": {
"node": ">=0.8.6"
},
"scripts": {
"test": "grunt coverage"
},
"dependencies": {
"async": "~2.5.0",
"commander": "~2.11.0",
"decompress": "^4.2.0"
},
"devDependencies": {
"coveralls": "~2.13.1",
"istanbul": "~0.4.5",
"grunt": "~1.0.1",
"grunt-contrib-clean": "~1.1.0",
"grunt-contrib-jshint": "~1.1.0",
"grunt-contrib-watch": "~1.0.0",
"grunt-coveralls": "~1.0.1",
"grunt-jsdoc": "~2.1.0",
"grunt-karma": "~2.0.0",
"grunt-mocha-test": "~0.13.2",
"grunt-mocha-istanbul": "~5.0.2",
"karma": "~1.7.0",
"mocha": "~3.5.0",
"mocha-lcov-reporter": "~1.3.0",
"phantomjs-prebuilt": "~2.1.7",
"proxyquire": "~1.8.0",
"request": "~2.81.0",
"should": "~11.2.1",
"jsdom": "~11.1.0"
}
}