forked from 2bigO/parse-neo4j
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 962 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 962 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
36
37
38
{
"name": "@stackcrafters/parse-neo4j",
"version": "0.6.20",
"description": "Parse results from neo4j's http endpoint to normal JSON",
"main": "lib/index.js",
"files": [
"/lib",
"!lib/**/*.test.*",
"package.json"
],
"scripts": {
"build": "npm run build:js",
"build:js": "babel ./src -d ./lib --extensions \".js,.ts,.tsx\" --source-maps --ignore '**/*.test.js'",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/stackcrafters/parse-neo4j.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/",
"access": "public"
},
"keywords": [
"endpoint",
"http",
"parser",
"neo4j"
],
"author": "Keyvan Mir Mohammad Sadeghi <keyvan.m.sadeghi@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stackcrafters/parse-neo4j/issues"
},
"devDependencies": {
"@stackcrafters/config-babel": "0.1.10"
}
}