-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 724 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 724 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
{
"name": "digraph-sort",
"version": "0.2.1",
"description": "Directed graph algorithms",
"main": "index.js",
"scripts": {
"test": "jest",
"debug": "node --inspect-brk node_modules/.bin/jest --runInBand"
},
"jest": {
"testEnvironment": "node"
},
"author": "Todd Fincannon <todd@toddfincannon.com> (http://toddfincannon.com)",
"license": "MIT",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/ToddFincannon/digraph-sort.git"
},
"bugs": {
"url": "https://github.com/ToddFincannon/digraph-sort/issues"
},
"dependencies": {
"fs-extra": "^7.0.1",
"voca": "^1.4.0"
},
"devDependencies": {
"jest-cli": "^23.6.0"
}
}