-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 820 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 820 Bytes
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
{
"name": "is-this-a-github-ip",
"version": "1.0.0",
"repository": "https://github.com/is-this-a/ip.git",
"author": "Jessica Stokes <hello@jessicastokes.net>",
"license": "MIT",
"scripts": {
"start": "parcel src/index.html",
"lint": "eslint src",
"build": "parcel build src/index.html --public-url /ip/",
"test": "yarn lint && yarn build",
"predeploy": "yarn build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"array-to-sentence": "2.0.0",
"cidr-matcher": "2.1.1"
},
"devDependencies": {
"@babel/core": "7.17.7",
"@babel/preset-env": "7.16.11",
"eslint": "8.11.0",
"gh-pages": "3.2.3",
"parcel-bundler": "1.12.5",
"parcel-plugin-clean-dist": "0.0.6",
"postcss-font-family-system-ui": "4.3.0",
"postcss-preset-env": "6.7.1"
}
}