-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
79 lines (79 loc) · 2 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "panviz.kms",
"version": "0.1.0",
"description": "knowledge management system",
"main": "panviz",
"repository": {
"type": "git",
"url": "https://github.com/panviz/kms"
},
"homepage": "",
"keywords": [
"knowledge management",
"dynamic graph",
"graph visualization",
"network data",
"data visualization",
"cms"
],
"author": {
"name": "Dmitra",
"email": "[email protected]"
},
"license": "http://panviz.com/licence",
"scripts": {
"start": "static",
"build-css": "sh bin/build-css",
"build-lib": "sh bin/build-lib",
"build-app": "browserify client/app.js -o client/bundle/bundle.js",
"build-template": "sh bin/build-template",
"watch-css": "nodemon -w client -e scss -x sh bin/build-css",
"watch-js": "watchify client/app.js -d -v -o client/bundle/bundle.js",
"test": "mocha --recursive"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"jquery": "global:$",
"lodash": "global:_",
"handlebars": "global:Handlebars",
"webcola": "global:cola",
"d3": "d3"
},
"dependencies": {
"backbone-events-standalone": "^0.2.7",
"body-parser": "^1.14.2",
"csv": "^0.4.6",
"d3": "^3.5.12",
"express": "^4.13.4",
"file-type": "^3.5.0",
"font-awesome": "^4.5.0",
"fs-extra": "^0.26.2",
"glob": "latest",
"handlebars": "4.0.5",
"isbinaryfile": "^3.0.0",
"jquery": "^2.2.0",
"jquery.easing": "1.3.2",
"js-yaml": "latest",
"lodash": "4.3.0",
"material-design-lite": "^1.1.1",
"minimist": "^1.2.0",
"moment": "2.14.0",
"multer": "^1.1.0",
"plusjs": "git+https://github.com/Dmitra/plusjs.git",
"to-markdown": "^2.0.1",
"webcola": "git+https://github.com/tgdwyer/WebCola.git#v3.1.0"
},
"devDependencies": {
"browserify": "^13.0.0",
"browserify-shim": "^3.8.12",
"jsdom": "^8.0.4",
"mocha": "^2.4.5",
"mocha-jsdom": "^1.1.0",
"node-sass": "^4.13.0",
"watchify": "^3.7.0"
}
}