-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 733 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 733 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
{
"name": "@tussle/state-postgres",
"version": "0.7.9",
"description": "Tussle state component backed by PostgresSQL",
"main": "lib/state.js",
"files": [
"lib"
],
"scripts": {
"build": "run-s clean build:tsc",
"build:tsc": "tsc -b",
"watch": "tsc -b --watch",
"clean": "rimraf lib coverage tsconfig.tsbuildinfo"
},
"author": "Mark Riedesel <mark@klowner.com>",
"license": "MIT",
"dependencies": {
"@tussle/core": "^0.7.9",
"@types/pg": "^7.14.11",
"pg": "^8.7.3"
},
"devDependencies": {
"@tussle/spec": "^0.7.9",
"jest": "^29.2.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"typescript": "^5.4.5"
},
"publishConfig": {
"access": "public"
}
}