-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
98 lines (98 loc) · 2.5 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "monument",
"version": "5.3.0",
"description": "evented routing for nodejs for use on the server and in the client. Isomorphic!",
"main": "index.js",
"scripts": {
"test": "npm run lint && nyc ava -s *.test.js utils/**/*.test.js web-sockets/**/*.test.js security/**/*.test.js routes/**/*.test.js",
"ava": "ava -s *.test.js utils/**/*.test.js web-sockets/**/*.test.js security/**/*.test.js routes/**/*.test.js",
"ava-parralel": "ava -s *.test.js utils/**/*.test.js web-sockets/**/*.test.js security/**/*.test.js",
"router-tests": "ava -s routes/**/*.test.js",
"start": "node app.js",
"lint": "bin/lint.js",
"release": "npm test && echo ' => releasing' && tom",
"release:minor": "npm test && echo ' => releasing' && tom --type=minor",
"release:major": "npm test && echo ' => releasing' && tom --type=major",
"report": "nyc report --reporter=html"
},
"repository": {
"type": "git",
"url": "https://github.com/ansble/monumentjs"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"bugs": {
"url": "https://github.com/ansble/monumentjs/issues"
},
"author": "Daniel Sellers <daniel@designfrontier.net>",
"license": "MIT",
"keywords": [
"nodejs",
"events",
"routing",
"isomorphic",
"browser",
"event",
"eda",
"server",
"http",
"web",
"webserver",
"framework",
"api",
"app",
"rest",
"restful"
],
"dependencies": {
"busboy": "0.2.14",
"content-security-policy-builder": "2.0.0",
"etag": "1.8.1",
"glob": "7.1.2",
"harken": "1.2.19",
"html-entities": "^1.2.1",
"iltorb": "2.4.0",
"lodash.clonedeep": "4.5.0",
"lodash.pick": "4.4.0",
"media-typer": "0.3.0",
"mime": "2.3.1",
"node-statsd": "0.1.1",
"on-headers": "1.0.1",
"platform": "1.3.5",
"raw-body": "2.3.3",
"striptags": "^3.1.1",
"uuid": "3.3.2",
"ws": "6.0.0"
},
"devDependencies": {
"ava": "^1.0.0-beta.6",
"chalk": "2.4.0",
"coveralls": "3.0.1",
"eslint": "5.0.1",
"form-data": "2.3.2",
"http2": "3.3.7",
"istanbul": "0.4.5",
"minimist": "1.2.0",
"mock-require": "3.0.1",
"nyc": "^12.0.1",
"semver": "^5.4.1",
"spdy": "3.4.7",
"tom-sawyer": "^0.1.6"
},
"engines": {
"node": ">4.0.0",
"npm": ">5.0.0"
},
"optionalDependencies": {
"bufferutil": "4.0.0",
"utf-8-validate": "5.0.1"
},
"ava": {
"concurrency": 10,
"failFast": false,
"require": [
"harken"
]
}
}