-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.11 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
{
"name": "@nymphjs/client-node",
"version": "1.0.0-beta.81",
"description": "Nymph.js - Node Client",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"nymph",
"ORM",
"object relational mapper"
],
"scripts": {
"clean": "test -d dist && rm -r dist || true",
"build": "tsc",
"watch": "tsc --watch",
"prepublish": "npm run clean && npm run build",
"test": "jest",
"test:watch": "jest --watch"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sciactive/nymphjs.git"
},
"author": "Hunter Perrin <[email protected]>",
"bugs": {
"url": "https://github.com/sciactive/nymphjs/issues"
},
"license": "Apache-2.0",
"dependencies": {
"@nymphjs/client": "^1.0.0-beta.81",
"node-fetch": "^2.7.0",
"websocket": "^1.0.34"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.3",
"@types/jest": "^29.5.12",
"@types/node-fetch": "^2.6.11",
"@types/websocket": "^1.0.10",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}