-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
79 lines (79 loc) · 2.28 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "koa-neo4j",
"version": "2.0.0-beta.3",
"description": "Rapidly create REST APIs, powered by Koa and Neo4j -- batteries included with built-in role based authentication via JWT and reusable backend components",
"main": "index.js",
"jsnext:main": "./src/index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint ./src --fix",
"dev": "./node_modules/.bin/webpack --progress --colors --watch",
"prebuild": "npm run lint",
"build": "./node_modules/.bin/babel src -d dist && ./node_modules/.bin/webpack --config webpack.config.jasmine.js",
"test": "NEO4J_PASSWORD=admin node jasmine.runner.js",
"mocha_test": "NEO4J_PASSWORD=admin mocha",
"prepublish": "npm run build&&npm run test"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:yrong/koa-neo4j.git"
},
"keywords": [
"webservice",
"server",
"API",
"REST",
"database",
"graph",
"neo4j",
"koa"
],
"author": "Keyvan Mir Mohammad Sadeghi <[email protected]>",
"contributors": [
{
"name": "Ron Yang",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/yrong/koa-neo4j/issues"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^7.1.5",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"coffee-loader": "^0.7.2",
"coffee-script": "^1.10.0",
"eslint": "^4.19.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-jasmine": "^2.10.1",
"jasmine": "^2.5.0",
"jasmine-given": "^2.6.4",
"jasmine-spec-reporter": "^2.7.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"mocha": "^3.4.1",
"supertest": "^4.0.2"
},
"dependencies": {
"chai": "^4.3.4",
"chalk": "^4.1.2",
"jsonwebtoken": "^8.5.1",
"kcors": "^2.2.2",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-passport": "^4.1.4",
"koa-router": "^10.1.1",
"log4js-wrapper-advanced": "^1.0.5",
"neo4j-driver": "^4.4.1",
"parse-neo4j": "^0.6.11",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
}
}