mirror of https://github.com/espruino/BangleApps
33 lines
1.1 KiB
JSON
33 lines
1.1 KiB
JSON
{
|
|
"name": "BangleApps",
|
|
"description": "Bangle.js App Loader (and Apps)",
|
|
"author": "Gordon Williams <gw@pur3.co.uk> (http://espruino.com)",
|
|
"version": "0.0.1",
|
|
"license": "MIT",
|
|
"repository": "https://github.com/espruino/BangleApps",
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^7.8.0",
|
|
"@typescript-eslint/parser": "^7.8.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"http-server": "^14.1.1",
|
|
"npm-watch": "^0.11.0"
|
|
},
|
|
"scripts": {
|
|
"lint-apps": "node bin/sync-lint-exemptions.mjs && eslint --max-warnings 0 ./apps",
|
|
"lint-modules": "eslint --max-warnings 0 ./modules",
|
|
"test": "node bin/sanitycheck.js && npm run lint-apps && npm run lint-modules",
|
|
"fix": "eslint --fix ./apps ./modules",
|
|
"update-local-apps": "./bin/create_apps_json.sh apps.local.json",
|
|
"local": "npm-watch & npx http-server -a localhost -c-1",
|
|
"start": "npx http-server -c-1"
|
|
},
|
|
"watch": {
|
|
"update-local-apps": "apps/*/metadata.json"
|
|
},
|
|
"dependencies": {
|
|
"acorn": "^8.0.0"
|
|
}
|
|
}
|