-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 917 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 917 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
{
"name": "unit-test-neptune-nodejs",
"version": "1.0.0",
"description": "Demo unit test Gremlin and openCypher queries against TinkerPop server",
"files": [
"dist"
],
"scripts": {
"build-ts": "./node_modules/.bin/tsc",
"test": "jest --runInBand --verbose"
},
"author": "Greg Biegel",
"license": "MIT-0",
"types": "dist/types/index.d.ts",
"dependencies": {
"gremlin": "3.7.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/node": "^7.23.2",
"@babel/plugin-transform-class-properties": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@types/gremlin": "^3.6.7",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/uuid": "^8.3.0",
"jest": "^29.7.0",
"prettier": "^2.0.5",
"typescript": "^4.6.3"
}
}