-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 788 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 788 Bytes
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
{
"name": "rest-serializer",
"version": "1.1.0",
"description": "Serializes objects to support a sideloaded REST format.",
"main": "index.js",
"scripts": {
"test": "find ./test -name '*_test.js' | xargs mocha -AR spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mockra/node-rest-serializer.git"
},
"keywords": [
"rest",
"serializer",
"json",
"api"
],
"author": "David Ratajczak <david@mockra.com> (http://mockra.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mockra/node-rest-serializer/issues"
},
"homepage": "https://github.com/mockra/node-rest-serializer#readme",
"dependencies": {
"lodash": "^3.10.1"
},
"devDependencies": {
"chai": "^3.4.1",
"mocha": "^2.3.4"
}
}