-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.01 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
{
"name": "ancient-sql-graph",
"version": "0.0.0",
"description": "Implementation, load testing, comparison of popular ways of storing graphs and searching by them in databases.",
"main": "lib/index.js",
"scripts": {
"test": "mocha src/tests/index.js --require babel-core/register",
"build": "babel ./src/lib --out-dir ./lib",
"check": "eslint ./src/lib/"
},
"author": {
"name": "Ivan S Glazunov",
"email": "ivansglazunov@gmail.com"
},
"bugs": {
"url": "https://github.com/AncientSouls/SqlGraph/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/AncientSouls/SqlGraph.git"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"eslint": "^4.6.1",
"mocha": "^4.0.1"
},
"dependencies": {
"chance": "^1.0.13",
"lodash": "^4.17.4"
}
}