-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
47 lines (47 loc) · 1.27 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
{
"name": "neode",
"version": "0.4.9",
"description": "Neo4j OGM for NodeJS",
"main": "build/index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "./node_modules/@babel/cli/bin/babel.js src -d build",
"test": "./node_modules/.bin/mocha --timeout 5000 --require @babel/register ./test{/,/**/}*.spec.js",
"lint": "./node_modules/.bin/eslint src/",
"coverage": "./node_modules/.bin/nyc --reporter=html npm test",
"tdd": "./node_modules/.bin/mocha --require @babel/register --watch"
},
"keywords": [
"neo4j",
"graph",
"cypher",
"ogm"
],
"repository": {
"type": "git",
"url": "https://github.com/adam-cowley/neode.git"
},
"author": "Adam Cowley <[email protected]>",
"license": "MIT",
"dependencies": {
"@hapi/joi": "^15.1.1",
"dotenv": "^4.0.0",
"neo4j-driver": "^4.2.2",
"uuid": "^3.4.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.4",
"@babel/preset-env": "^7.9.6",
"@babel/register": "^7.8.6",
"chai": "^3.5.0",
"eslint": "^4.19.1",
"mocha": "^5.2.0",
"nyc": "^14.1.1"
},
"bugs": {
"url": "https://github.com/adam-cowley/neode/issues"
},
"homepage": "https://github.com/adam-cowley/neode#readme"
}