forked from patrick-steele-idem/warp10
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.31 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
{
"name": "warp10",
"version": "2.1.0",
"description": "Transport complex JavaScript objects from the server to the web browser at lightning fast speeds",
"main": "src/index.js",
"keywords": [
"JSON",
"circular",
"reference",
"recursive",
"recursion",
"parse",
"stringify",
"eval"
],
"scripts": {
"test": "mocha test/ && npm run jshint",
"benchmark": "matcha benchmark/benchmark.js",
"test-coverage": "istanbul cover _mocha -- --ui bdd --reporter spec ./test/ && npm run jshint",
"jshint": "jshint src/",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"author": "Patrick Steele-Idem <[email protected]>",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"circular-json": "^0.3.0",
"coveralls": "^2.11.11",
"escodegen": "^1.8.0",
"istanbul": "^0.4.4",
"js-beautify": "^1.6.3",
"jshint": "^2.9.2",
"lave": "^1.1.10",
"matcha": "^0.7.0",
"mocha": "^2.5.3",
"refify": "^1.0.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patrick-steele-idem/warp10.git"
},
"bugs": {
"url": "https://github.com/patrick-steele-idem/warp10/issues"
},
"homepage": "https://github.com/patrick-steele-idem/warp10#readme",
"types": "src/index.d.ts"
}