-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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": "nact",
"version": "4.4.3",
"description": "nact ⇒ node.js + actors = your services have never been so µ",
"main": "lib/index.js",
"scripts": {
"test": "yarn run lint && nyc mocha ./test/*.js",
"test-watch": "yarn run lint && nyc mocha --watch ./test/*.js",
"interactive-cover": "nyc --reporter=html mocha ./test/*.js && open ./coverage/index.html",
"lint": "semistandard",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepush": "yarn run test",
"test-only": "nyc mocha ./test/*.js",
"test-only-watch": "nyc mocha --watch ./test/*.js",
"lint-fix": "semistandard --fix"
},
"homepage": "https://nact.io",
"repository": {
"type": "git",
"url": "git://github.com/ncthbrt/nact"
},
"keywords": [
"actors",
"actor-model",
"akka",
"akka.net",
"non-blocking",
"actor system",
"erlang",
"event sourcing",
"distributed-systems"
],
"author": "Nick Cuthbert (https://github.com/ncthbrt)",
"license": "Apache-2.0",
"bugs": {
"url": "http://github.com/ncthbrt/nact/issues"
},
"dependencies": {
"denque": "^1.2.2",
"rxjs": "^5.4.3"
},
"devDependencies": {
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.0",
"eslint": "^4.8.0",
"husky": "^0.14.3",
"mocha": "^4.0.0",
"nyc": "^11.2.1",
"semistandard": "^11.0.0",
"sinon": "^4.1.4",
"sinon-chai": "^2.14.0"
}
}