-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1020 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 1020 Bytes
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
{
"name": "sensor-placement",
"version": "1.0.0",
"description": "Urban Observatory sensor placement map with other NCC and ONS datasets",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run css-watch && parcel index.html",
"build": "parcel build --experimental-scope-hoisting --public-url . index.html",
"css-build": "node-sass --omit-source-map-url sass/main.scss css/main.css",
"css-watch": "npm run css-build -- --watch"
},
"author": "David Herbert",
"license": "ISC",
"dependencies": {
"ol": "^5.3.2",
"ol-ext": "^3.1.2",
"bulma": "^0.7.5"
},
"devDependencies": {
"node-sass": "^4.12.0",
"parcel-bundler": "^1.12.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidherbert2/sensor-placement.git"
},
"bugs": {
"url": "https://github.com/davidherbert2/sensor-placement/issues"
},
"homepage": "https://github.com/davidherbert2/sensor-placement#readme"
}