-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
74 lines (74 loc) · 1.77 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
{
"name": "manylines",
"version": "0.2.0",
"description": "Explore networks and publish narratives.",
"bugs": "http://github.com/medialab/manylines/issues",
"engines": {
"node": ">=0.10 <0.11"
},
"repository": {
"type": "git",
"url": "http://github.com/medialab/manylines.git"
},
"contributors": [
{
"name": "Paul Girard",
"url": "https://github.com/paulgirard"
},
{
"name": "Daniele Guido",
"url": "https://github.com/danieleguido"
},
{
"name": "Alexis Jacomy",
"url": "https://github.com/jacomyal"
},
{
"name": "Matthieu Jacomy",
"url": "https://github.com/jacomyma"
},
{
"name": "Guillaume Plique",
"url": "https://github.com/Yomguithereal"
}
],
"license": "LGPL-3.0",
"scripts": {
"deploy": "npm run build && gh-pages -d ./build",
"build": "gulp && ./build.sh",
"serve": "node bin/serve-static.js",
"start": "node bin/start.js",
"flush": "node bin/flush.js",
"make": "node bin/make.js",
"test": "mocha -R spec"
},
"dependencies": {
"async": "^0.9.0",
"body-parser": "^1.2.0",
"chalk": "^0.5.1",
"connect": "^3.1.1",
"cookie-parser": "^1.1.0",
"couchbase": "~1.2.4",
"errorhandler": "^1.0.1",
"express": "^4.8.8",
"express-session": "^1.1.0",
"gh-pages": "^2.0.1",
"http-proxy": "^1.8.1",
"lodash": "^2.4.1",
"node-uuid": "~1.4.1",
"on-finished": "^2.1.0",
"request": "^2.36.0",
"serve-static": "^1.1.0",
"typology": "^0.1.0",
"validator": "^3.17.1",
"winston": "^0.7.3"
},
"devDependencies": {
"mocha": "^1.18.2",
"supertest": "^0.13.0",
"gulp-cssmin": "^0.1.6",
"gulp-concat": "^2.4.1",
"gulp-uglify": "^1.0.1",
"gulp": "^3.8.8"
}
}