-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (38 loc) · 1.27 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
{
"name": "ultimateprogressbar",
"version": "v0.0.0",
"description": "indev game idea",
"main": "/dist/bundle.js",
"eslintConfig": {
"env": {
"browser": true,
"node": true
}
},
"devDependencies": {
"@types/assert": "^1.5.6",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"stylelint-config-standard": "^25.0.0",
"typescript": "^4.5.5"
},
"dependencies": {
"assert": "^2.0.0",
"localforage": "^1.10.0"
},
"scripts": {
"lint": "npx eslint --fix . --ext .ts",
"csslint": "npx stylelint styles.css --fix",
"build:esbuild": "npx esbuild src/Game.ts --bundle --minify --sourcemap --target=\"chrome58,firefox57,safari11,edge29\" --outfile=\"./dist/out.js\"",
"watch:esbuild": "npx esbuild src/Game.ts --bundle --minify --sourcemap --target=\"chrome58,firefox57,safari11,edge29\" --outfile=\"./dist/out.js\" --watch",
"check:tsc": "npx -p typescript tsc",
"watch:tsc": "npx -p typescript tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pseudonian/Ultra-Progress-Bar.git"
},
"keywords": ["Ultimate Progress Bar", "Ultimate", "Progress", "Bar", "Platonic"],
"author": "Kevin Bunn",
"license": "MIT",
"homepage": "https://github.com/Pseudonian/Ultra-Progress-Bar#readme"
}