-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 929 Bytes
/
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
{
"name": "hal-serializer",
"version": "1.2.0",
"description": "Framework agnostic HAL serializer.",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"test": "./node_modules/.bin/istanbul cover --print both ./node_modules/mocha/bin/_mocha -- -R spec ./test/**/*.js",
"coveralls": "cat ./coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js"
},
"keywords": [
"json",
"hal",
"Hypertext Application Language",
"serializer"
],
"author": "Kévin Danielo",
"repository": "danivek/hal-serializer",
"license": "MIT",
"engines": {
"node": ">= 4.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.8",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^5.0.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.5"
},
"dependencies": {
"into-stream": "^3.1.0",
"joi": "^8.0.3",
"lodash": "^4.5.1"
}
}