-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
31 lines (31 loc) · 867 Bytes
/
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
{
"name": "curl2ab",
"version": "0.1.0",
"description": "Convert curl command line to ab command line",
"main": "src/index.html",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "parcel serve src/index.html --host 0.0.0.0 --hmr-port 4321",
"build": "parcel build src/index.html --no-source-maps",
"lint": "prettier --write --plugin-search-dir=. src/**/*.{html,js,css}",
"lint:ci": "prettier --check --plugin-search-dir=. src/**/*.{html,js,css}"
},
"browserslist": [
"> 2%"
],
"keywords": [
"curl",
"ab",
"svelte"
],
"author": "Anthony Hivert",
"license": "GPL-3.0-or-later",
"dependencies": {},
"devDependencies": {
"normalize.css": "^8.0.1",
"parcel-bundler": "^1.12.5",
"parcel-plugin-svelte": "^4.0.9",
"prettier": "^3.2.5",
"svelte": "^3.59.2"
}
}