-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 796 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 796 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
33
34
35
{
"name": "node-servoy",
"version": "1.5.2",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/jtinbergen/node-servoy.git",
"author": "jaapjan@tinbergen.net",
"license": "MIT",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"build": "tsup"
},
"dependencies": {
"open": "^7.0.0",
"pg": "^8.11.3",
"ts-jest": "^29.1.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tsup": "^7.2.0",
"typescript": "^4.1.5",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/pg": "^8.10.2",
"@types/uuid": "^9.0.3"
}
}