BangleApps/package.json

29 lines
913 B
JSON
Raw Normal View History

2020-02-28 14:28:15 +00:00
{
"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",
2020-02-28 14:28:15 +00:00
"devDependencies": {
2024-02-29 13:43:29 +00:00
"eslint": "^8.57.0",
2022-05-06 19:58:56 +00:00
"eslint-config-airbnb-base": "^15.0.0",
2024-02-29 13:43:29 +00:00
"eslint-plugin-import": "^2.29.1",
2024-02-25 22:27:26 +00:00
"http-server": "^14.1.1",
2022-05-06 19:58:56 +00:00
"npm-watch": "^0.11.0"
2020-02-28 14:28:15 +00:00
},
"scripts": {
2024-03-04 20:34:17 +00:00
"lint-apps": "node bin/sync-lint-exemptions.mjs && eslint ./apps --ext .js",
"test": "node bin/sanitycheck.js && npm run lint-apps && eslint ./modules --ext .js",
"update-local-apps": "./bin/create_apps_json.sh apps.local.json",
"local": "npm-watch & npx http-server -a localhost -c-1",
2020-06-07 02:46:54 +00:00
"start": "npx http-server -c-1"
2020-04-18 09:48:22 +00:00
},
"watch": {
"update-local-apps": "apps/*/metadata.json"
},
2020-04-18 09:48:22 +00:00
"dependencies": {
2020-05-10 23:12:59 +00:00
"acorn": "^7.2.0"
2020-02-28 14:28:15 +00:00
}
}