package.json
1.9 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"_args": [
[
"toposort-class@1.0.1",
"/Users/ye/Desktop/NodeBook/nodejs-book/ch12/12.4/node-auction"
]
],
"_from": "toposort-class@1.0.1",
"_id": "toposort-class@1.0.1",
"_inBundle": false,
"_integrity": "sha1-f/0feMi+KMO6Rc1OGj9e4ZO9mYg=",
"_location": "/toposort-class",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "toposort-class@1.0.1",
"name": "toposort-class",
"escapedName": "toposort-class",
"rawSpec": "1.0.1",
"saveSpec": null,
"fetchSpec": "1.0.1"
},
"_requiredBy": [
"/sequelize"
],
"_resolved": "https://registry.npmjs.org/toposort-class/-/toposort-class-1.0.1.tgz",
"_spec": "1.0.1",
"_where": "/Users/ye/Desktop/NodeBook/nodejs-book/ch12/12.4/node-auction",
"author": "",
"bugs": {
"url": "https://github.com/gustavohenke/toposort/issues"
},
"description": "Topological sort of directed acyclic graphs (like dependecy lists)",
"devDependencies": {
"babel-eslint": "^4.0.5",
"eslint": "^1.0.0",
"grunt": "^0.4.5",
"grunt-babel": "^5.0.1",
"grunt-banner": "^0.4.0",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-uglify": "^0.9.1",
"matcha": "^0.6.0",
"mocha": "^2.2.5"
},
"homepage": "https://github.com/gustavohenke/toposort#readme",
"keywords": [
"topological",
"sort",
"sorting",
"graphs",
"graph",
"dependency",
"list",
"dependencies",
"acyclic",
"browser"
],
"license": "MIT",
"main": "./index.js",
"name": "toposort-class",
"repository": {
"type": "git",
"url": "git+https://github.com/gustavohenke/toposort.git"
},
"scripts": {
"benchmark": "matcha benchmark/general.js",
"benchmark-save": "matcha -R csv benchmark/general.js > benchmark/results.csv",
"eslint": "eslint src/toposort.js test/spec.js Gruntfile.js",
"test": "mocha -b test"
},
"version": "1.0.1"
}