forked from ncthbrt/nact-persistence-postgres
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
123 lines (123 loc) · 3.94 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@nact/nact-persistence-sqlite",
"version": "8.1.0",
"description": "nact-persistence-sqlite ⇒ nact + sqlite = your services have never been so persistent...and _fast!_",
"scripts": {
"bench": "ts-node -P tsconfig.bench.json --transpile-only ./bench",
"bench:clean": "rm -f bench*sqlite* && ./bench/scripts/teardown-db.sh && ./bench/scripts/setup-db.sh && sleep 1",
"build": "run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"bench/**/*.ts\" \"src/**/*.ts\" --write",
"fix:lint": "eslint bench src --ext .ts --fix",
"test": "run-s test:*",
"test:lint": "eslint bench src --ext .ts",
"test:prettier": "prettier \"bench/**/*.ts\" \"src/**/*.ts\" --list-different",
"test:spelling": "cspell \"{README.md,.github/*.md,src/**/*.ts}\"",
"test:unit": "jest -c ./jest.config.js",
"watch:build": "tsc -p tsconfig.json -w",
"watch:test": "yarn test:unit --watch",
"cov": "run-s build test:unit cov:html cov:lcov && open-cli coverage/index.html",
"cov:html": "nyc report --reporter=html",
"cov:lcov": "nyc report --reporter=lcov",
"cov:send": "run-s cov:lcov && codecov",
"cov:check": "nyc report && nyc check-coverage --lines 100 --functions 100 --branches 100",
"doc": "run-s doc:html && open-cli dist/docs/index.html",
"doc:html": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --out dist/docs",
"doc:json": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --json dist/docs/typedoc.json",
"doc:publish": "gh-pages -m \"[ci skip] Updates\" -d dist/docs",
"version": "standard-version",
"reset-hard": "git clean -dfx && git reset --hard && yarn",
"prepare-release": "run-s reset-hard test cov:check doc:html version doc:publish"
},
"main": "dist/main/index.js",
"typings": "dist/main/index.d.ts",
"module": "dist/module/index.js",
"files": [
"dist/main",
"dist/module",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git://github.com/nactio/nact-persistence-sqlite"
},
"license": "Apache-2.0",
"keywords": [
"SQLite",
"better-sqlite3",
"persistence",
"event sourcing",
"actors",
"actor-model",
"akka",
"akka.net",
"non-blocking",
"actor system",
"erlang"
],
"engines": {
"node": ">=10"
},
"author": "Nick Cuthbert (https://github.com/ncthbrt)",
"contributors": [
"Nathan Probst (https://github.com/nprbst)"
],
"bugs": {
"url": "http://github.com/nactio/nact-persistence-sqlite/issues"
},
"dependencies": {
"better-sqlite3": "^7.1.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/benchmark": "^2.1.0",
"@types/better-sqlite3": "^5.4.1",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"benny": "^3.6.15",
"codecov": "^3.5.0",
"cspell": "^4.1.0",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^3.0.2",
"eslint-plugin-import": "^2.22.0",
"gh-pages": "^3.1.0",
"jest": "^26.6.3",
"mem": "^8.1.0",
"microtime": "^3.0.0",
"nact": "^7.6.0",
"nact-persistence-postgres": "^8.0.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"open-cli": "^6.0.1",
"pg-promise": "^10.6.1",
"prettier": "^2.1.1",
"standard-version": "^9.0.0",
"ts-jest": "^26.5.4",
"ts-node": "^9.0.0",
"typedoc": "^0.19.0",
"typedoc-theme-dark": "^0.0.5",
"typescript": "^4.0.2"
},
"peerDependencies": {
"nact": "^7.6.0"
},
"prettier": {
"singleQuote": true
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"exclude": [
"**/*.spec.js"
]
}
}