-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 976 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
37
38
{
"name": "active-serializer",
"version": "1.0.6",
"description": "Rails active_model_serializer inspired nodejs object serializer",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/billykong/active-serializer.git"
},
"keywords": [
"serializer",
"active-serializer",
"mask",
"json"
],
"author": "Billy Kong <billyklh@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/billykong/active-serializer/issues"
},
"homepage": "https://github.com/billykong/active-serializer#readme",
"engines": {
"node": ">=8.4.0"
},
"dependencies": {
"json-mask": "^0.3.9"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^2.13.3",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.5.3"
}
}