-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
74 lines (74 loc) · 1.89 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": "vizwit",
"version": "1.1.0",
"description": "An interactive data visualization tool",
"main": "src/scripts/vizwit.js",
"scripts": {
"start": "npm run watch & npm run server",
"build": "gulp build",
"watch": "gulp watch",
"server": "static ./dist",
"deploy": "bash ./deploy.sh",
"lint": "standard | snazzy",
"test": "npm run lint && browserify test/spec/*/*.js | tape-run | tap-spec"
},
"author": "timwis",
"repository": {
"type": "git",
"url": "https://github.com/timwis/vizwit.git"
},
"license": "GPL-2.0",
"dependencies": {
"amcharts3": "amcharts/amcharts3",
"backbone": "^1.2.2",
"backbone.modal": "github:jimf/backbone.modal#npm-remove-engines",
"bluebird": "^3.1.1",
"bootstrap": "^3.3.5",
"brace": "^0.7.0",
"chroma-js": "^1.1.1",
"clipboard": "^1.4.2",
"datatables": "https://github.com/DataTables/DataTables/archive/1.10.9.tar.gz",
"jquery": "^2.1.4",
"leaflet": "^1.0.2",
"leaflet-choropleth": "^1.1.3",
"moment": "^2.10.6",
"node-underscorify": "0.0.14",
"numbro": "^1.3.3",
"soda-js": "socrata/soda-js",
"spin.js": "^2.3.2",
"split.js": "^1.0.6",
"squel": "^5.5.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"browserify": "^11.0.1",
"del": "^2.0.2",
"gulp": "^3.9.0",
"gulp-util": "^3.0.6",
"merge-stream": "^1.0.0",
"node-jquery-deparam": "0.0.3",
"node-static": "^0.7.7",
"sinon": "^1.17.2",
"snazzy": "^2.0.1",
"standard": "^5.4.1",
"tap-spec": "^4.1.1",
"tape": "^4.4.0",
"tape-run": "^2.1.1",
"uglifyify": "^3.0.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.3.1"
},
"browserify": {
"transform": [
[
"node-underscorify",
{
"templateSettings": {
"variable": "data"
}
}
]
]
}
}