-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "travel-price-map",
"version": "0.0.0",
"private": true,
"description": "",
"keywords": [],
"homepage": "https://github.com/juliuste/travel-price-map",
"bugs": "https://github.com/juliuste/travel-price-map/issues",
"repository": "juliuste/travel-price-map",
"license": "ISC",
"author": "Julius Tens <[email protected]>",
"scripts": {
"build": "browserify index.js > assets/bundle.js",
"check-deps": "depcheck --ignore-patterns='assets/bundle.js'",
"lint": "eslint index.js",
"fix": "npm run lint -- --fix",
"test": "npm run lint && npm run check-deps && npm run build",
"prepublishOnly": "npm test"
},
"dependencies": {
"boolean": "^3.0.0",
"isomorphic-fetch": "^3.0.0",
"lodash": "^4.17.15",
"maplibre-gl": "^1.14.0",
"querystate": "^1.0.8",
"sweetalert2": "^11.0.11"
},
"devDependencies": {
"browserify": "^17.0.0",
"depcheck": "^1.4.1",
"eslint": "^7.27.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0"
},
"engines": {
"node": ">=14"
}
}