-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 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
48
49
50
{
"name": "graphlibrary",
"version": "2.2.0",
"description": "A directed and undirected multi-graph library",
"author": "Tyler Long <tyler4long@gmail.com>",
"main": "index.js",
"keywords": [
"graph",
"algorithms"
],
"scripts": {
"upgrade": "yarn-upgrade-all",
"test": "standard && make test && make bench",
"prepush": "yarn test",
"prepublishOnly": "make dist"
},
"dependencies": {
"lodash": "^4.17.5"
},
"devDependencies": {
"benchmark": "^2.1.4",
"browserify": "^16.1.0",
"chai": "^4.1.2",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-requirejs": "^1.1.0",
"karma-safari-launcher": "^1.0.0",
"mocha": "^5.0.1",
"requirejs": "^2.3.5",
"seedrandom": "^2.4.3",
"sprintf": "^0.1.5",
"standard": "^11.0.0",
"uglify-es": "^3.3.9",
"yarn-upgrade-all": "^0.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/tylingsoft/graphlibrary.git"
},
"license": "MIT",
"standard": {
"ignore": [
"dist/**/*.js"
]
}
}