-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.9 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
{
"name": "hurricane",
"version": "2.0.75",
"description": "NYCEM Hurricane Evacuation Zone Finder",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack",
"build-no-test": "webpack",
"prebuild": "yarn test && yarn roll-css",
"roll-css": "./node_modules/nyc-lib/css/roll-css.sh ./src/css/hurricane.theme.css ./src/css/hurricane.css",
"predeploy": "yarn build",
"deploy": "node deploy"
},
"author": "Tim Keane <t.d.keane@gmail.com> (https://timkeane.github.io/)",
"license": "Apache-2.0",
"dependencies": {
"jquery": "^3.6.0",
"nyc-lib": "^1.4.69",
"ol": "7.1.0",
"ol-mapbox-style": "9.2.0",
"papaparse": "^5.3.2",
"proj4": "^2.8.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"coveralls": "^3.0.4",
"jest": "^24.8.0",
"jest-canvas-mock": "^2.2.0",
"jest-fetch-mock": "^1.6.5",
"nyc-build-helper": "^0.0.45",
"postcss-clean": "^1.2.2",
"postcss-css-variables": "^0.18.0",
"postcss-import": "^14.1.0",
"webpack": "4.19.1",
"webpack-cli": "^3.3.11"
},
"resolutions": {
"**/**/serialize-javascript": "^3.1.0",
"**/**/ssri": "^8.0.1",
"**/**/glob-parent": "^6.0.1",
"**/**/node-fetch": "^2.6.1",
"**/**/ws": "^7.4.6",
"**/**/postcss": "^8.2.10",
"**/**/json-schema": "^0.4.0",
"**/**/ansi-regex": "^5.0.1",
"**/**/ssh2": "^1.4.0",
"**/**/node-notifier": "^8.0.1",
"**/**/cross-fetch": "^3.1.5"
},
"jest": {
"verbose": true,
"automock": false,
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"testMatch": [
"**/__tests__/**/*.test.js"
],
"collectCoverageFrom": [
"src/js/*.js"
],
"setupFiles": [
"./__tests__/jest-setup.js"
],
"transformIgnorePatterns": []
}
}