-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
100 lines (100 loc) · 2.5 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "pattrn",
"version": "2.0.0",
"description": "Data-driven, participatory fact-mapping",
"main": "index.js",
"scripts": {
"test": "yarn install --force && gulp build",
"bundle": "browserify --debug src/js/app.js | exorcist src/js/main.js.map > src/js/main.js",
"gulp": "gulp",
"start": "http-server dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hotzeplotz/pattrn.git"
},
"keywords": [
"data",
"mapping",
"research",
"human rights",
"citizen science",
"conflict monitoring",
"investigative journalism"
],
"author": "andrea rota <[email protected]>",
"contributors": [
"Pattrn project at Forensic Architecture <[email protected]>"
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/pattrn-project/pattrn/issues"
},
"homepage": "http://pattrn.co/",
"dependencies": {
"bootstrap": "^3.3.6",
"crossfilter2": "1.4.0-alpha.06",
"d3": "^3.5.14",
"d3-dispatch": "^1.0.0",
"d3-queue": "^2.0.3",
"dc": "2.0.0-beta.32",
"file-saver": "^1.3.2",
"jquery": "^2.2.0",
"jsdom": "^8.0.2",
"leaflet": "^0.7.7",
"leaflet.markercluster": "^0.4.0",
"lightgallery": "^1.1.5",
"lodash.range": "^3.1.5",
"pug": "^2.0.0-beta3",
"tabletop": "^1.4.2",
"yamljs": "^0.2.9"
},
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"docco": "^0.7.0",
"exorcist": "^0.4.0",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-jade": "^1.1.0",
"gulp-json-lint": "^0.1.0",
"gulp-sass": "^2.3.2",
"gulp-util": "^3.0.7",
"gulp-webserver": "^0.9.1",
"http-server": "^0.8.5",
"vinyl-source-stream": "^1.1.0"
},
"pattrn_configuration": {
"app_main": "src/js/app.js",
"bundle": "js/main.js",
"src": "src",
"dest": "dist",
"vendor_stylesheets": [
{
"stylesheets": "node_modules/bootstrap/dist/css/bootstrap.css",
"assets": [
{
"src": "node_modules/bootstrap/dist/fonts/**/*",
"dest": "/fonts"
}
]
},
{
"stylesheets": "node_modules/dc/dc.css"
},
{
"stylesheets": "node_modules/leaflet/dist/leaflet.css"
},
{
"stylesheets": "node_modules/lightgallery/dist/css/lightgallery.css",
"assets": [
{
"src": "node_modules/lightgallery/dist/fonts/**/*",
"dest": "/fonts"
}
]
}
]
}
}