-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "@opaquejs/opaque",
"version": "0.19.4",
"description": "A client-side Javascript ORM",
"main": "lib/index.js",
"files": [
"/lib"
],
"devDependencies": {
"@opaquejs/query": "^0.2.5",
"@opaquejs/testing": "^0.3.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.1",
"typescript": "^4.2.2"
},
"peerDependencies": {
"@opaquejs/query": "^0.2.5"
},
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"test-watch": "tap **/*.spec.ts -w",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opaquejs/opaque.git"
},
"keywords": [
"opaquejs",
"orm",
"api"
],
"author": "Sebastian Dittrich",
"license": "MIT",
"bugs": {
"url": "https://github.com/opaquejs/opaque/issues"
},
"homepage": "https://github.com/opaquejs/opaque#readme",
"dependencies": {
"@opaquejs/query-engine": "^0.3.7"
}
}