9ef9bfb12c
Running `npm run serve` in `platform/javascript/` will start a web server that uses `bin/` as its root folder. This means you can extract a compiled web editor ZIP in this folder and immediately be able to test the web editor. Headers required for the use of SharedArrayBuffer are automatically added to every response.
29 lines
1.3 KiB
JSON
29 lines
1.3 KiB
JSON
{
|
|
"name": "godot",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"description": "Development and linting setup for Godot's HTML5 platform code",
|
|
"scripts": {
|
|
"docs": "jsdoc --template js/jsdoc2rst/ js/engine/engine.js js/engine/config.js --destination ''",
|
|
"lint": "npm run lint:engine && npm run lint:libs && npm run lint:modules && npm run lint:tools",
|
|
"lint:engine": "eslint \"js/engine/*.js\" --no-eslintrc -c .eslintrc.engine.js",
|
|
"lint:libs": "eslint \"js/libs/*.js\" --no-eslintrc -c .eslintrc.libs.js",
|
|
"lint:modules": "eslint \"../../modules/**/*.js\" --no-eslintrc -c .eslintrc.libs.js",
|
|
"lint:tools": "eslint \"js/jsdoc2rst/**/*.js\" --no-eslintrc -c .eslintrc.engine.js",
|
|
"format": "npm run format:engine && npm run format:libs && npm run format:modules && npm run format:tools",
|
|
"format:engine": "npm run lint:engine -- --fix",
|
|
"format:libs": "npm run lint:libs -- --fix",
|
|
"format:modules": "npm run lint:modules -- --fix",
|
|
"format:tools": "npm run lint:tools -- --fix",
|
|
"serve": "serve"
|
|
},
|
|
"author": "Godot Engine contributors",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"eslint": "^7.28.0",
|
|
"eslint-config-airbnb-base": "^14.2.1",
|
|
"eslint-plugin-import": "^2.23.4",
|
|
"jsdoc": "^3.6.7",
|
|
"serve": "^13.0.2"
|
|
}
|
|
}
|