-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.51 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.51 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
{
"name": "ancient-graph-spreading",
"version": "0.0.15",
"description": "Automatic maintenance spreading of graph according other graphs.",
"keywords": [
"javascript",
"database",
"graph",
"storage",
"integrity",
"spreading"
],
"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/GraphSpreading.git"
},
"bugs": {
"url": "https://github.com/AncientSouls/GraphSpreading/issues"
},
"main": "./lib/index.js",
"directories": {
"lib": "lib",
"test": "tests"
},
"dependencies": {
"ancient-graph": "^0.0.31",
"ancient-graph-removed": "^0.0.7",
"async": "^2.0.1",
"chai": "^3.5.0",
"mocha": "^2.5.3"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"jsdoc": "^3.4.0",
"lodash": "^4.16.1",
"minami": "^1.1.1",
"source-map-support": "^0.4.2"
},
"scripts": {
"compile": "babel --presets es2015 -d ./ src/ -s --minified",
"test": "mocha tests/index.js --require source-map-support/register",
"jsdoc": "rm -rf ./doc && git submodule update --init --recursive && cd ./doc && git checkout gh-pages && cd ../ && npm i && rm -rf ./doc/*/ && find ./doc ! -name '.git' -type f -exec rm -rf {} + && jsdoc ./src/lib/*.js ./README.md -r -d ./doc -t ./node_modules/minami -c ./jsdoc.conf.json"
}
}