-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.1 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
{
"name": "lpc-spritesheet-generator",
"version": "1.0.0",
"description": "A browser app for generating spritesheets for [Liberated Pixel Cup](https://lpc.opengameart.org) characters.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint javascript/**/*.js local-server.js",
"start": "node dev-server.js",
"build": "scripts/build.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BenCreating/LPC-Generator.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/BenCreating/LPC-Generator/issues"
},
"homepage": "https://github.com/BenCreating/LPC-Generator#readme",
"devDependencies": {
"@jspm/generator": "^2.4.2",
"chokidar": "^4.0.3",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.5.0",
"eslint-plugin-promise": "^6.1.1",
"express": "^4.21.2"
},
"dependencies": {
"fflate": "^0.8.2",
"lit": "^3.2.1"
}
}