-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.42 KB
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
{
"name": "ip-address-tracker",
"version": "1.0.0",
"description": "An app that allows you to track and pull information from any IP address",
"private": true,
"license": "ISC",
"author": "RomanStashuk <romanstashuk1@gmail.com> (https://github.com/RomanStashuk)",
"repository": {
"type": "git",
"url": "git+https://github.com/RomanStashuk/ip-address-tracker.git"
},
"bugs": {
"url": "https://github.com/RomanStashuk/ip-address-tracker/issues"
},
"homepage": "https://github.com/RomanStashuk/ip-address-tracker#readme",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"start": "parcel src/index.html --open",
"build": "parcel build src/index.html",
"stylelint": "stylelint \"src/**/*{.css,.scss}\"",
"stylelint:fix": "npm run stylelint --fix",
"eslint": "eslint \"src/**/*.js\"",
"eslint:fix": "npm run eslint --fix",
"lint": "npm run eslint && npm run stylelint",
"prettify": "prettier --write \"src/**/*.js\"",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.8.3",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"gh-pages": "^5.0.0",
"parcel": "^2.8.3",
"stylelint": "^15.2.0",
"stylelint-config-recommended-scss": "^9.0.1"
},
"dependencies": {
"leaflet": "^1.9.3",
"normalize.css": "^8.0.1"
}
}