-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.03 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.03 KB
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
80
81
82
83
84
85
86
87
88
{
"name": "metagraph-node",
"version": "0.2.0",
"description": "Metagraph on Node",
"main": "dist/index.js",
"license": "Apache 2.0",
"author": {
"name": "zizai",
"email": "song@metagraph.io"
},
"homepage": "https://github.com/openmg/metagraph-node",
"repository": {
"type": "git",
"url": "https://github.com/openmg/metagraph-node.git"
},
"bugs": {
"url": "https://github.com/openmg/metagraph-node/issues"
},
"keywords": [
"graph",
"database",
"tinkerpop",
"gremlin",
"traversals"
],
"dependencies": {
"babel-polyfill": "^6.16.0",
"bluebird": "3.4.7",
"cuid": "^1.3.8",
"es6-enum": "^1.1.0",
"lodash": "^4.17.2",
"path": "^0.12.7",
"pouchdb-node": "^6.1.0"
},
"devDependencies": {
"ava": "^0.18.1",
"babel-cli": "^6.16.0",
"babel-core": "^6.18.0",
"babel-eslint": "^7.1.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-flowtype-errors": "^3.0.0",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-react": "^6.7.1",
"flow-bin": "^0.39.0",
"xo": "^0.17.1"
},
"scripts": {
"build": "babel src --out-dir dist",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"prepublish": "npm run build",
"test": "xo && ava"
},
"ava": {
"require": [
"babel-register"
]
},
"xo": {
"parser": "babel-eslint",
"extends": "airbnb",
"esnext": true,
"space": true,
"envs": [
"node"
],
"plugins": [
"flowtype",
"flowtype-errors",
"promise"
],
"rules": {
"arrow-parens": 0,
"complexity": 0,
"import/no-extraneous-dependencies": 0,
"new-cap": 0,
"no-underscore-dangle": 0,
"unicorn/filename-case": 0
}
}
}