-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
44 lines (44 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
{
"name": "translate-js",
"version": "1.3.0",
"description": "manage translations and localization with simple api",
"main": "src/translate.js",
"license": "MIT",
"author": "Damir Brekalo <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/dbrekalo/translate-js"
},
"keywords": [
"locale",
"Language",
"translate",
"translations"
],
"scripts": {
"watch": "grunt",
"build": "grunt build",
"test": "mocha --reporter spec",
"watch:test": "mocha --watch --reporter spec",
"coverage": "istanbul cover _mocha -- -R spec",
"coverageReport": "npm run coverage && open coverage/lcov-report/*.html",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"bump:patch": "grunt bump:patch",
"bump:minor": "grunt bump:minor",
"bump:major": "grunt bump:major"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"grunt": "^1.0.4",
"grunt-bump": "^0.8.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "^21.0.0",
"istanbul": "^0.4.5",
"load-grunt-tasks": "^4.0.0",
"mocha": "^6.1.4"
}
}