-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 959 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": "pso-tracker",
"version": "1.1.1",
"private": true,
"description": "",
"browser": "index.html",
"scripts": {
"archive": "bestzip source.zip *.json *.md .eslintrc.js .htmlnanorc .babelrc src",
"build": "npm run archive && parcel build --no-cache --public-url ./ src/*.html",
"dev": "npm run archive && cross-env ESLINT_OPTION=warn parcel src/*.html",
"release": "npm run build && bestzip pso-tracker.zip README.dist.md LICENSE.txt dist",
"lint": "cross-env eslint src",
"lint-fix": "cross-env eslint --fix src"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0-only",
"dependencies": {
"@svgdotjs/svg.js": "^3.1.2",
"honeycomb-grid": "^1.4.4"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"bestzip": "^2.1.5",
"cross-env": "^5.2.1",
"eslint": "^8.37.0",
"eslint-plugin-jsdoc": "^40.1.1",
"parcel-bundler": "^1.12.5",
"parcel-plugin-eslint": "^1.0.6"
}
}