-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 984 Bytes
/
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
{
"name": "@steelbreeze/graph",
"version": "1.0.8",
"description": "Graph libraries for TypeScript and JavaScript",
"main": "./lib/node/index.js",
"typings": "./lib/node/index.d.ts",
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "tsc -p .",
"test": "nyc --reporter=lcov mocha",
"coverage": "CODECLIMATE_REPO_TOKEN=6ecc007b40c9be01cd83b16e03997effcfdc8eb7e1639368a7b7c9c99affdfab codeclimate-test-reporter < ./coverage/lcov.info"
},
"devDependencies": {
"typescript": "latest",
"nyc": "latest",
"mocha": "latest",
"codeclimate-test-reporter": "latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steelbreeze/graph.git"
},
"keywords": [
"graph",
"tree",
"TypeScript",
"JavaScript"
],
"author": "David Mesquita-Morris",
"license": "MIT",
"bugs": {
"url": "https://github.com/steelbreeze/graph/issues"
},
"homepage": "https://github.com/steelbreeze/graph#readme"
}