-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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
{
"name": "ClimateAnalysis",
"version": "0.0.1",
"description": "climate data analysis",
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.org/Dmitra/climate.git"
},
"keywords": [
"data visualisation",
"climate data analysis"
],
"author": "Dmitra",
"license": "http://daviste.com/licence",
"scripts": {
"start": "static",
"build-debug": "browserify app.js -d -o bundle.js",
"build-min": "browserify app.js | uglifyjs -c > bundle.min.js",
"build-lib": "browserify dependencies.js -o libs.js",
"build": "npm run build-debug && npm run build-lib && npm run build-css",
"watch-js": "watchify app.js -d -o bundle.js -v",
"build-css": "bash ./bin/build-css",
"test": "mocha",
"pretest": "jshint --exclude-path .gitignore"
},
"dependencies": {
"jquery": "2.1.3",
"d3": "<=3.5.0",
"lodash": "<=3.5.0",
"angular": "1.3.14",
"angular-strap": "2.2.0",
"temporal-analysis": "https://[email protected]/dmitra/temporal-charting.git"
},
"devDependencies": {
"node-static": "latest",
"browserify": "<=8.1.3",
"bootstrap-sass": "latest",
"node-sass": "latest",
"uglify-js": "latest",
"watchify": "latest",
"mocha": "latest"
}
}