-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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
{
"name": "nact-persistence-postgres",
"version": "8.0.1",
"description": "nact-persistence-postgres ⇒ nact + postresql = your services have never been so persistent",
"main": "lib/index.js",
"scripts": {
"test": "yarn run lint && nyc mocha ./test/*.js",
"interactive-cover": "nyc --reporter=html mocha ./test/*.js && open ./coverage/index.html",
"lint": "semistandard",
"lint-fix": "semistandard --fix",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepush": "yarn run test"
},
"repository": {
"type": "git",
"url": "git://github.com/ncthbrt/nact-persistence-postgres"
},
"keywords": [
"PostgreSQL",
"persistence",
"event sourcing",
"actors",
"actor-model",
"akka",
"akka.net",
"non-blocking",
"actor system",
"erlang"
],
"author": "Nick Cuthbert (https://github.com/ncthbrt)",
"license": "Apache-2.0",
"bugs": {
"url": "http://github.com/ncthbrt/nact-persistence-postgres/issues"
},
"dependencies": {
"pg-promise": "^10.6.1"
},
"devDependencies": {
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.0",
"eslint": "^4.8.0",
"husky": "^0.14.3",
"mocha": "^5.1.1",
"nact": "^7.0.1",
"nyc": "^11.2.1",
"semistandard": "^12.0.1"
},
"peerDependencies": {
"nact": "^7.2.1"
}
}