-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 935 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 935 Bytes
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
{
"name": "@norjs/event",
"version": "1.0.14",
"description": "NorJS Event observer and client support",
"main": "./src/EventObserver.js",
"directories": {
"test": "test"
},
"bin": {
"nor-event": "./src/event-client.js"
},
"dependencies": {
"@norjs/types": "^1.0.14",
"@norjs/socket": "^1.0.14",
"@norjs/utils": "^1.0.14",
"lodash": "^4.17.15",
"moment": "^2.24.0"
},
"devDependencies": {
"mocha": "^6.1.4",
"sinon": "^7.4.1"
},
"scripts": {
"test": "mocha test/**/*.spec.js",
"test-watch": "mocha --watch test/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/norjs/event.git"
},
"keywords": [
"event",
"observer"
],
"author": "Jaakko Heusala <jheusala@iki.fi>",
"license": "MIT",
"bugs": {
"url": "https://github.com/norjs/event/issues"
},
"homepage": "https://github.com/norjs/event#readme"
}