-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.91 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
{
"name": "climate-by-location",
"version": "3.2.2",
"description": "Interactive climate graphs",
"main": "dist/climate-by-location.climate_explorer.bundle.min.js",
"maintainers": [
{
"name": "Josh Wilson",
"email": "[email protected]"
}
],
"license": "UNLICENSED",
"scripts": {
"build-dev": "ln -srf ./src demo/ && ln -srf ./node_modules demo/node_modules && npx template-literals --config demo/config.json --outdir demo demo/index.js -- env=dev",
"build": "npx template-literals --config demo/config.json --outdir dist/ demo/index.js && rollup -c --environment=\"build_env:prod\" && rsync demo/demo.css demo/demo.js demo/ce_areas.json demo/vendor dist/ -r",
"start": "npm run build-dev && node serve.js",
"start-prod": "static dist -p 8080"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nemac/climate-by-location.git"
},
"bugs": {
"url": "https://github.com/nemac/climate-by-location/issues"
},
"dependencies": {
"core-js": "^3.6.5",
"core-js-bundle": "^3.6.5",
"unfetch": "^4.1.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-arrow-functions": "^7.12.1",
"@babel/plugin-transform-object-assign": "^7.12.1",
"@babel/plugin-transform-regenerator": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/plugin-transform-template-literals": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-node-resolve": "^9.0.0",
"babel-polyfill": "^6.26.0",
"lodash-es": "^4.17.15",
"node-static": "~0.7.11",
"nodemon": "^2.0.4",
"rollup": "^2.23.0",
"template-literals-cli": "^0.1.7"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
}
}