mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-19 13:47:54 +00:00
103 lines
3.4 KiB
JSON
103 lines
3.4 KiB
JSON
{
|
|
"name": "balena-supervisor",
|
|
"description": "This is balena's Supervisor, a program that runs on IoT devices and has the task of running user Apps (which are Docker containers), and updating them as the balena API informs it to.",
|
|
"version": "9.7.0",
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/resin-io/resin-supervisor.git"
|
|
},
|
|
"scripts": {
|
|
"start": "./entry.sh",
|
|
"build": "webpack",
|
|
"precommit": "lint-staged",
|
|
"prettify": "prettier --config ./node_modules/resin-lint/config/.prettierrc --write \"{src,test,typings}/**/*.ts\"",
|
|
"lint:coffee": "resin-lint src/ test/",
|
|
"lint:typescript": "resin-lint --typescript src/ test/ typings/ && tsc --noEmit",
|
|
"lint": "npm run lint:coffee && npm run lint:typescript",
|
|
"test": "npm run lint && npm run test:build && JUNIT_REPORT_PATH=report.xml istanbul cover _mocha && npm run coverage",
|
|
"test:fast": "npm run test:build && mocha",
|
|
"test:build": "tsc && coffee -m -c -o build . && cp -r test/data build/test/ && cp -r src/migrations build/src && cp package.json build",
|
|
"test:debug": "npm run test:build && mocha --inspect-brk",
|
|
"coverage": "istanbul report text && istanbul report html"
|
|
},
|
|
"private": "true",
|
|
"dependencies": {
|
|
"sqlite3": "^4.0.4"
|
|
},
|
|
"engines": {
|
|
"node": "^6.13.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bluebird": "^3.5.25",
|
|
"@types/common-tags": "^1.8.0",
|
|
"@types/dockerode": "^2.5.10",
|
|
"@types/event-stream": "^3.3.34",
|
|
"@types/express": "^4.11.1",
|
|
"@types/knex": "^0.14.14",
|
|
"@types/lockfile": "^1.0.0",
|
|
"@types/lodash": "^4.14.119",
|
|
"@types/memoizee": "^0.4.2",
|
|
"@types/mkdirp": "^0.5.2",
|
|
"@types/morgan": "^1.7.35",
|
|
"@types/mz": "0.0.32",
|
|
"@types/node": "^10.12.17",
|
|
"@types/request": "^2.48.1",
|
|
"@types/rwlock": "^5.0.2",
|
|
"@types/shell-quote": "^1.6.0",
|
|
"balena-sync": "^10.0.0",
|
|
"blinking": "~0.0.2",
|
|
"bluebird": "^3.5.3",
|
|
"body-parser": "^1.12.0",
|
|
"buffer-equal-constant-time": "^1.0.1",
|
|
"chai-events": "0.0.1",
|
|
"coffee-loader": "^0.9.0",
|
|
"coffeescript": "^1.12.7",
|
|
"common-tags": "^1.8.0",
|
|
"copy-webpack-plugin": "^4.6.0",
|
|
"dbus-native": "^0.2.5",
|
|
"deep-object-diff": "^1.1.0",
|
|
"docker-delta": "^2.2.4",
|
|
"docker-progress": "^3.0.3",
|
|
"docker-toolbelt": "^3.3.7",
|
|
"duration-js": "^4.0.0",
|
|
"event-stream": "3.3.4",
|
|
"express": "^4.0.0",
|
|
"fork-ts-checker-webpack-plugin": "^0.5.2",
|
|
"fp-ts": "^1.12.2",
|
|
"husky": "^1.3.0",
|
|
"io-ts": "^1.5.1",
|
|
"istanbul": "^0.4.5",
|
|
"json-mask": "^0.3.8",
|
|
"knex": "~0.15.2",
|
|
"lint-staged": "^8.1.0",
|
|
"lockfile": "^1.0.1",
|
|
"lodash": "^4.17.5",
|
|
"log-timestamp": "^0.1.2",
|
|
"memoizee": "^0.4.1",
|
|
"mixpanel": "^0.10.1",
|
|
"mkdirp": "^0.5.1",
|
|
"mocha": "^5.1.1",
|
|
"mochainon": "^2.0.0",
|
|
"morgan": "^1.9.1",
|
|
"mz": "^2.7.0",
|
|
"network-checker": "^0.1.1",
|
|
"pinejs-client-request": "^5.1.0",
|
|
"prettier": "^1.15.3",
|
|
"request": "^2.51.0",
|
|
"resin-lint": "^2.0.1",
|
|
"resin-register-device": "^3.0.0",
|
|
"resumable-request": "^2.0.0",
|
|
"rimraf": "^2.6.2",
|
|
"rwlock": "^5.0.0",
|
|
"shell-quote": "^1.6.1",
|
|
"strict-event-emitter-types": "^2.0.0",
|
|
"terser": "^3.14.1",
|
|
"ts-loader": "^5.3.0",
|
|
"typed-error": "^2.0.0",
|
|
"typescript": "^3.2.2",
|
|
"webpack": "^4.25.0",
|
|
"webpack-cli": "^3.1.2"
|
|
}
|
|
}
|