-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.4 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
{
"name": "ancient-graph",
"version": "0.0.32",
"description": "Graph methods and event handlers based on adapter.",
"keywords": [
"javascript",
"database",
"graph",
"storage"
],
"author": "Ivan S Glazunov <[email protected]>",
"contributors": [
{
"name": "Ivan S Glazunov",
"email": "[email protected]"
}
],
"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": {
"doc": "doc",
"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",
"minami": "^1.1.1",
"jsdoc": "^3.4.0"
},
"scripts": {
"compile": "babel --presets es2015 -d ./ src/ -s --minified",
"test": "mocha tests/index.js --require source-map-support/register",
"jsdoc": "git submodule update --init --recursive && cd ./doc && git checkout gh-pages && cd ../ && npm i && rm -r ./doc/*/ && find ./doc ! -name '.git' -type f -exec rm -rf {} + && jsdoc ./src/lib/*.js ./src/lib/adapters/*.js ./README.md -r -d ./doc -t ./node_modules/minami -c ./jsdoc.conf.json"
}
}