-
Notifications
You must be signed in to change notification settings - Fork 150
/
package.json
53 lines (53 loc) · 1.39 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
47
48
49
50
51
52
53
{
"name": "@neo4j/introspector",
"version": "4.0.0",
"description": "Introspect a Neo4j database model/schema",
"keywords": [
"neo4j",
"graphql",
"schema"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/neo4j/graphql/issues"
},
"homepage": "https://github.com/neo4j/graphql/tree/dev/packages/introspector",
"exports": "./dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*.ts",
"dist/**/*.ts.map",
"dist/**/*.js",
"dist/**/*.js.map"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build:clean": "yarn clean && yarn build",
"build": "tsc --build tsconfig.production.json",
"clean": "cd src/ && tsc --build --clean",
"test:int": "jest tests/integration",
"test:unit": "jest src",
"test": "jest"
},
"author": "Neo4j Inc.",
"devDependencies": {
"@neo4j/graphql": "^6.0.0",
"@types/jest": "29.5.14",
"@types/node": "22.9.2",
"@types/pluralize": "0.0.33",
"jest": "29.7.0",
"ts-jest": "29.2.5",
"typescript": "5.1.6"
},
"dependencies": {
"camelcase": "^6.3.0",
"debug": "^4.3.4",
"pluralize": "^8.0.0"
},
"peerDependencies": {
"neo4j-driver": "^5.8.0"
}
}