-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 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
{
"name": "serializator",
"version": "1.0.2",
"description": "Serialize javascript objects to JSON with support for rich data structures",
"main": "index.js",
"homepage": "https://github.com/jsreport/serializator",
"repository": {
"type": "git",
"url": "[email protected]:jsreport/serializator.git"
},
"keywords": [
"serialize",
"json",
"serializator"
],
"author": "BJR Matos <[email protected]>",
"contributors": [
"BJR Matos <[email protected]> (https://github.com/bjrmatos)",
"Jan Blaha <[email protected]> (https://github.com/pofider)"
],
"license": "MIT",
"engines": {
"node": ">=8.9"
},
"standard": {
"parser": "babel-eslint",
"env": {
"node": true,
"mocha": true
}
},
"scripts": {
"test": "mocha --timeout 5000 test/test.js && standard"
},
"devDependencies": {
"babel-eslint": "8.2.6",
"eslint": "5.4.0",
"eslint-plugin-babel": "5.1.0",
"mocha": "5.2.0",
"should": "13.2.3",
"standard": "11.0.1"
}
}