-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 811 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 811 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
{
"name": "simplegraphjs",
"version": "1.0.6",
"description": "A very simple graph implementation for use in JS, using an adjacency matrix..",
"main": "dist/Graph.js",
"types": "./dist/Graph.d.ts",
"keywords": [
"graph",
"breadth first search",
"search",
"typescript",
"node",
"javascript",
"simple"
],
"scripts": {
"build": "tsc",
"test": "jest --coverage --coverageReporters=text-lcov | coveralls",
"prepublish": "jest"
},
"author": "Craig Harley <craigharley2@googlemail.com>",
"repository": "https://github.com/CraigHarley/SimpleGraphJS",
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.13",
"coveralls": "^3.0.2",
"jest": "^24.0.0",
"ts-jest": "^23.10.5",
"typescript": "^3.3.1"
},
"dependencies": {}
}