forked from dbrekalo/json-api-normalize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.41 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
{
"name": "json-api-normalize",
"version": "1.1.5",
"description": "Normalize JSON api dataset",
"repository": {
"type": "git",
"url": "https://github.com/dbrekalo/json-api-normalize"
},
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Damir Brekalo"
},
"main": "src/jsonApiNormalize.js",
"scripts": {
"watch": "grunt",
"build": "grunt build",
"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",
"bump:patch": "grunt bump:patch",
"bump:minor": "grunt bump:minor",
"bump:major": "grunt bump:major"
},
"keywords": [
"jsonApiNormalize",
"json-api-normalize",
"normalize",
"jsonapi",
"json-api"
],
"devDependencies": {
"attire": "^1.3.2",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"grunt": "^1.0.1",
"grunt-bump": "^0.8.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-eslint": "^19.0.0",
"grunt-include-replace": "^5.0.0",
"istanbul": "^0.4.5",
"load-grunt-tasks": "^3.5.2",
"mocha": "^3.2.0"
}
}