-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.16 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
45
46
47
{
"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.3.0",
"grunt-babel": "^5.0.1",
"grunt-banner": "^0.6.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-uglify": "^5.0.0",
"matcha": "^0.7.0",
"mocha": "^8.1.3"
},
"scripts": {
"build": "grunt",
"test": "mocha -b test",
"eslint": "eslint src/toposort.js test/spec.js Gruntfile.js",
"benchmark": "matcha benchmark/general.js",
"benchmark-save": "matcha -R csv benchmark/general.js > benchmark/results.csv"
},
"repository": {
"type": "git",
"url": "https://github.com/gustavohenke/toposort.git"
},
"keywords": [
"topological",
"sort",
"sorting",
"graphs",
"graph",
"dependency",
"list",
"dependencies",
"acyclic",
"browser"
],
"author": [
"Marcel Klehr <mklehr@gmx.net>",
"Gustavo Henke <gustavo@injoin.com.br>",
"Aaron Trent <novacrazy@gmail.com>"
],
"license": "MIT",
"readmeFilename": "README.md"
}