-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.27 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "covid-testing",
"version": "1.4.5",
"description": "COVID Testing Facilities - Find the closest location.",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack",
"build-no-test": "yarn roll-css && webpack",
"prebuild": "yarn test && yarn roll-css",
"roll-css": "./node_modules/nyc-lib/css/roll-css.sh ./src/css/covid-testing.theme.css ./src/css/covid-testing.css",
"predeploy": "yarn build",
"deploy": "node deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CityOfNewYork/covid-testing.git"
},
"author": "Tim Keane",
"license": "ISC",
"bugs": {
"url": "https://github.com/CityOfNewYork/covid-testing/issues"
},
"homepage": "https://github.com/CityOfNewYork/covid-testing#readme",
"dependencies": {
"jquery": "^3.3.1",
"nyc-build-helper": "^0.0.40",
"nyc-lib": "^1.4.64",
"ol": "^6.14.1",
"ol-mapbox-style": "^8.1.2",
"papaparse": "^5.3.0",
"proj4": "^2.4.4"
},
"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.2",
"dotenv": "^8.2.0",
"ghooks": "^2.0.4",
"jest": "^24.8.0",
"jest-canvas-mock": "^2.2.0",
"jest-fetch-mock": "^2.1.2",
"postcss-clean": "^1.2.2",
"postcss-css-variables": "^0.18.0",
"postcss-import": "^14.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"resolutions": {
"**/**/node-fetch": "^2.6.1",
"**/**/serialize-javascript": "^3.1.0",
"**/**/ssri": "6.0.2",
"**/**/postcss": "^8.2.10",
"**/**/elliptic": "^6.5.4",
"**/**/browserslist": "^4.16.5",
"**/**/glob-parent": "^5.1.2",
"**/**/set-value": "^4.0.1",
"**/**/ssh2": "^1.4.0",
"**/**/ansi-regex": "^5.0.1",
"**/**/json-schema": "^0.4.0",
"**/**/node-notifier": "^8.0.1",
"**/**/cross-fetch": "^3.1.5"
},
"jest": {
"verbose": true,
"automock": false,
"testMatch": [
"**/__tests__/**/*.test.js"
],
"setupFiles": [
"./__tests__/jest-setup.js"
],
"transformIgnorePatterns": [],
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"src/js/**/*.js"
]
}
}