forked from gustavohenke/toposort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1 KB
/
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
40
41
42
43
44
{
"name": "toposort-class",
"version": "1.0.1",
"description": "Topological sort of directed acyclic graphs (like dependecy lists)",
"main": "./index.js",
"devDependencies": {
"babel-eslint": "10.1.0",
"eslint": "6.8.0",
"grunt": "1.5.3",
"grunt-babel": "5.0.3",
"grunt-banner": "0.6.0",
"grunt-contrib-clean": "2.0.1",
"grunt-contrib-uglify": "5.2.2",
"mocha": "8.4.0"
},
"scripts": {
"build": "grunt",
"test": "mocha -b test",
"eslint": "eslint src/toposort.js test/spec.js Gruntfile.js"
},
"repository": {
"type": "git",
"url": "https://github.com/gustavohenke/toposort.git"
},
"keywords": [
"topological",
"sort",
"sorting",
"graphs",
"graph",
"dependency",
"list",
"dependencies",
"acyclic",
"browser"
],
"contributors": [
"Marcel Klehr <mklehr@gmx.net>",
"Gustavo Henke <gustavo@injoin.com.br>",
"Aaron Trent <novacrazy@gmail.com>"
],
"license": "MIT",
"readmeFilename": "README.md"
}