-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.9 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.9 KB
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
{
"name": "floatmap",
"version": "0.0.1",
"description": "A tool for visualizing the impact of unrestrained climate change.",
"main": "Gruntfile.js",
"scripts": {
"bundle": "webpack",
"bundle:watch": "onchange 'floatmap/static/js/**/*.js' -- webpack",
"clean": "rm -rf dist lib",
"styles": "lessc --clean-css floatmap/static/styles/main.less > dist/floatmap.css",
"styles:watch": "onchange floatmap/static/styles/theme/*.less -- npm run styles",
"transpile": "babel floatmap/static/js/**/*.js floatmap/static/**/*.js -d lib",
"transpile:watch": "npm run transpile -- -w",
"test": "mocha test --compilers js:babel-core/register",
"test:watch": "onchange 'floatmap/static/js/**/*.js' 'test/**/*.js' -- npm run test",
"prebuild": "mkdir -p dist && npm run test && npm run transpile",
"build": "npm run prebuild && npm run styles && npm run bundle",
"watch": "parallelshell 'npm run styles:watch' 'npm run transpile:watch' 'npm run test:watch'"
},
"repository": {
"type": "git",
"url": "https://github.com/matteobanerjee/floatmap.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/matteobanerjee/floatmap/issues"
},
"homepage": "https://github.com/matteobanerjee/floatmap",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"less": "^2.7.1",
"less-plugin-clean-css": "^1.5.1",
"mocha": "^2.5.3",
"onchange": "^2.5.0",
"parallelshell": "^2.0.0",
"watch": "^0.19.1",
"webpack": "^1.13.1"
},
"dependencies": {
"backbone": "^1.3.3",
"backbone.layoutmanager": "^1.0.0",
"bootstrap": "^3.3.6",
"jquery": "^3.0.0",
"jquery.cookie": "^1.4.1",
"rainbowvis.js": "^1.0.1",
"tether-shepherd": "^1.7.0",
"underscore": "^1.8.3"
},
"babel": {
"presets": [
"es2015"
]
}
}