-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.71 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
{
"name": "translation-dictionary",
"version": "0.1.1",
"description": "JavaScript gettext-style translation output library with sprintfs parameter replace.",
"main": "index.js",
"author": "Peter Rottmann <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/rottmann/translation-dictionary",
"bugs": {
"url": "https://github.com/rottmann/translation-dictionary/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/rottmann/translation-dictionary.git"
},
"scripts": {
"test": "npm run jshint && mocha test/ --recursive",
"jshint": "jshint lib/ test/",
"build": "npm run build-webpack && npm run build-bower",
"build-webpack": "./node_modules/webpack/bin/webpack.js --config script/webpack.config.js && ./node_modules/webpack/bin/webpack.js --config script/webpack.config.min.js && ./node_modules/webpack/bin/webpack.js --config script/webpack.config.woe.min.js",
"build-bower": "./script/bower-json-update"
},
"keywords": [
"translation",
"dictionary",
"translate",
"i18n",
"internationalization",
"gettext",
"sprintf"
],
"dependencies": {
"eventemitter3": "^0.1.6",
"inherits": "^2.0.1",
"sprintf-js": "^1.0.2"
},
"devDependencies": {
"chai": "^1.10.0",
"chai-spies": "^0.5.1",
"jshint": "^2.5.10",
"mocha": "^2.0.1",
"webpack": "^1.4.13"
},
"jshintConfig": {
"camelcase": true,
"curly": false,
"eqeqeq": true,
"forin": true,
"latedef": true,
"newcap": true,
"undef": true,
"unused": true,
"trailing": true,
"node": true,
"browser": true,
"predef": [
"it",
"describe",
"beforeEach",
"afterEach"
]
}
}