forked from AncientSouls/Graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.06 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": "ancient-graph",
"version": "0.0.2",
"description": "Graph methods and event handlers based on adapter.",
"keywords": [
"javascript",
"database",
"graph",
"storage"
],
"author": "Ivan S Glazunov <ivansglazunov@gmail.com>",
"contributors": [
{
"name": "Ivan S Glazunov",
"email": "ivansglazunov@gmail.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AncientSouls/Graph.git"
},
"bugs": {
"url": "https://github.com/AncientSouls/Graph/issues"
},
"main": "./lib/index.js",
"directories": {
"lib": "lib",
"test": "tests"
},
"dependencies": {
"chai": "^3.5.0",
"mocha": "^2.5.3",
"fbemitter": "^2.0.2",
"lodash": "^4.15.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"source-map-support": "^0.4.2"
},
"scripts": {
"compile": "babel --presets es2015 -d ./ src/",
"prepublish": "npm run compile",
"test": "mocha tests/index.js --require source-map-support/register"
}
}