-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 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
50
51
52
53
54
{
"name": "json-cycle",
"version": "1.5.0",
"description": "Encode/decode circular structures for converting to and from JSON.",
"keywords": [
"json",
"cycle",
"stringify",
"parse",
"circular",
"recursive",
"circular",
"reference",
"recursion"
],
"main": "cycle.js",
"private": false,
"repository": {
"type": "git",
"url": "[email protected]:valery-barysok/json-cycle.git"
},
"bugs": {
"url": "https://github.com/valery-barysok/json-cycle.git/issues"
},
"homepage": "https://github.com/valery-barysok/json-cycle.git",
"files": [
"LICENSE",
"README.md",
"cycle.js"
],
"author": "Valery Barysok <[email protected]>",
"contributors": [
{
"name": "Douglas Crockford (douglascrockford)",
"email": "[email protected]"
}
],
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec --bail --check-leaks test/",
"test-ci": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
"test-cov": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
"test-tap": "./node_modules/.bin/mocha --reporter tap --check-leaks test/"
},
"license": "MIT",
"engines": {
"node": ">= 4"
},
"devDependencies": {
"chai": "3.2.0",
"coveralls": "2.11.4",
"istanbul": "^0.3.19",
"mocha": "2.3.2"
}
}