-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 862 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 862 Bytes
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
{
"name": "graphlabs.core.graphs",
"version": "0.1.10",
"author": "GraphLabs",
"description": "The graph library for the GraphLabs web project",
"keywords": [
"graphlabs",
"graph",
"task",
"module"
],
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/eakarpov/GraphLabsSuite.Core.Graphs.git"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"dependencies": {
"@types/lodash": "^4.14.146",
"immutable": "^3.8.1",
"lodash": "^4.17.15",
"ts-md5": "^1.2.7",
"typescript": "^3.7.2"
},
"devDependencies": {
"@types/chai": "^4.2.4",
"@types/mocha": "^2.2.41",
"chai": "^4.1.0",
"mocha": "^3.4.2",
"ts-node": "^3.2.0"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "mocha -r ts-node/register test/**/*.test.ts"
}
}