-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.41 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.41 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
{
"name": "xgraph",
"version": "1.4.15",
"description": "An Executable Graph Database",
"main": "./src/xgraph.js",
"scripts": {
"build": "cd build && npm run build",
"test": "npm install && cd Tests && npm install && node test.js && cd .. && npm run lint && echo Test Suite Finished with exit code 0!",
"qa": "npm install && cd Tests && npm install && node test.js --fast && cd .. && npm run lint && echo Test Suite Finished with exit code 0!",
"qad": "npm install && cd Tests && npm install && node test.js --fast --debug && cd .. && npm run lint && echo Test Suite Finished with exit code 0!",
"lint": "eslint src/*.js --fix",
"rollup": "rollup --config rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IntrospectiveSystems/xGraph.git"
},
"author": "Introspective Systems, LLC.",
"bugs": {
"url": "https://github.com/IntrospectiveSystems/xGraph/issues"
},
"bin": {
"xgraph": "./src/xgraph.js",
"broker": "./src/broker.js"
},
"homepage": "https://github.com/IntrospectiveSystems/xGraph#readme",
"license": "AGPL-3.0",
"dependencies": {
"jszip": "3.2.1",
"minimist": "1.2.1",
"mkdirp": "0.5.1",
"node-rsa": "^1.0.8",
"signale": "1.3.0",
"tmp": "0.1.0",
"tmp-promise": "1.1.0",
"tree-directory": "0.1.0",
"uuid": "3.2.1",
"volatile": "7.0.1"
},
"devDependencies": {
"eslint": "5.15.2"
}
}