forked from dbrekalo/translate-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.43 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
{
"name": "translate-js",
"version": "1.0.3",
"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": {
"bump:patch": "grunt bump:patch",
"bump:minor": "grunt bump:minor",
"bump:major": "grunt bump:major",
"build": "npm test && grunt build",
"watch": "grunt build && grunt watch",
"test": "mocha --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"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"grunt": "^1.0.3",
"grunt-bump": "^0.8.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^2.0.0",
"grunt-contrib-uglify": "^4.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-jscs": "^3.0.1",
"istanbul": "^0.4.4",
"load-grunt-tasks": "^4.0.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.2.0"
}
}