forked from oklemenz/PrinceJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.04 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
{
"name": "prince-js",
"version": "1.0.0",
"description": "Prince of Persia (JavaScript)",
"main": "index.js",
"directories": {
"assets": "assets",
"converter": "converter",
"lib": "lib",
"src": "src"
},
"scripts": {
"start": "http-server",
"convert": "node converter/index.js",
"convert:own:99": "node converter/index.js './converter/98 - Own/level1.xml' 98",
"convert:own:100": "node converter/index.js './converter/98 - Own/level2.xml' 98",
"lint": "npm run prettier && eslint . --fix",
"prettier": "prettier \"**/*.{js,json,md,html}\" --write --loglevel error"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oklemenz/PrinceJS.git"
},
"bugs": {
"url": "https://github.com/oklemenz/PrinceJS/issues"
},
"homepage": "https://github.com/oklemenz/PrinceJS#readme",
"devDependencies": {
"eslint": "^8.25.0",
"eslint-config": "^0.3.0",
"eslint-config-prettier": "^8.5.0",
"http-server": "^14.1.1",
"prettier": "^2.7.1",
"xml2json": "^0.12.0"
}
}