mirror of
https://github.com/JasonYANG170/IOTConnect-Web.git
synced 2024-11-23 20:26:28 +00:00
85 lines
3.0 KiB
JSON
85 lines
3.0 KiB
JSON
|
{
|
||
|
"author": "Christoph Guttandin",
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/chrisguttandin/worker-timers-broker/issues"
|
||
|
},
|
||
|
"config": {
|
||
|
"commitizen": {
|
||
|
"path": "cz-conventional-changelog"
|
||
|
}
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"@babel/runtime": "^7.24.0",
|
||
|
"fast-unique-numbers": "^8.0.13",
|
||
|
"tslib": "^2.6.2",
|
||
|
"worker-timers-worker": "^7.0.67"
|
||
|
},
|
||
|
"description": "The broker which is used by the worker-timers package.",
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.24.0",
|
||
|
"@babel/plugin-external-helpers": "^7.23.3",
|
||
|
"@babel/plugin-transform-runtime": "^7.24.0",
|
||
|
"@babel/preset-env": "^7.24.0",
|
||
|
"@commitlint/cli": "^18.6.1",
|
||
|
"@commitlint/config-angular": "^18.6.1",
|
||
|
"@rollup/plugin-babel": "^6.0.4",
|
||
|
"chai": "^4.3.10",
|
||
|
"commitizen": "^4.3.0",
|
||
|
"cz-conventional-changelog": "^3.3.0",
|
||
|
"eslint": "^8.57.0",
|
||
|
"eslint-config-holy-grail": "^58.0.8",
|
||
|
"grunt": "^1.6.1",
|
||
|
"grunt-cli": "^1.4.3",
|
||
|
"grunt-sh": "^0.2.1",
|
||
|
"husky": "^8.0.3",
|
||
|
"karma": "^6.4.3",
|
||
|
"karma-chrome-launcher": "^3.2.0",
|
||
|
"karma-firefox-launcher": "^2.1.3",
|
||
|
"karma-mocha": "^2.0.1",
|
||
|
"karma-sauce-launcher": "^4.3.6",
|
||
|
"karma-sinon-chai": "^2.0.2",
|
||
|
"karma-webkit-launcher": "^2.4.0",
|
||
|
"karma-webpack": "^5.0.1",
|
||
|
"lint-staged": "^15.2.2",
|
||
|
"load-grunt-config": "^4.0.1",
|
||
|
"mocha": "^10.3.0",
|
||
|
"prettier": "^3.2.5",
|
||
|
"rimraf": "^5.0.5",
|
||
|
"rollup": "^4.12.1",
|
||
|
"sinon": "^17.0.1",
|
||
|
"sinon-chai": "^3.7.0",
|
||
|
"ts-loader": "^9.5.1",
|
||
|
"tsconfig-holy-grail": "^15.0.0",
|
||
|
"tslint": "^6.1.3",
|
||
|
"tslint-config-holy-grail": "^56.0.0",
|
||
|
"typescript": "^5.3.3",
|
||
|
"webpack": "^5.90.3"
|
||
|
},
|
||
|
"files": [
|
||
|
"build/es2019/",
|
||
|
"build/es5/",
|
||
|
"src/"
|
||
|
],
|
||
|
"homepage": "https://github.com/chrisguttandin/worker-timers-broker",
|
||
|
"license": "MIT",
|
||
|
"main": "build/es5/bundle.js",
|
||
|
"module": "build/es2019/module.js",
|
||
|
"name": "worker-timers-broker",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/chrisguttandin/worker-timers-broker.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"build": "rimraf build/* && tsc --project src/tsconfig.json && rollup --config config/rollup/bundle.mjs",
|
||
|
"lint": "npm run lint:config && npm run lint:src && npm run lint:test",
|
||
|
"lint:config": "eslint --config config/eslint/config.json --ext .js --report-unused-disable-directives config/",
|
||
|
"lint:src": "tslint --config config/tslint/src.json --project src/tsconfig.json src/*.ts src/**/*.ts",
|
||
|
"lint:test": "eslint --config config/eslint/test.json --ext .js --report-unused-disable-directives test/",
|
||
|
"prepare": "husky install",
|
||
|
"prepublishOnly": "npm run build",
|
||
|
"test": "grunt lint && grunt test"
|
||
|
},
|
||
|
"types": "build/es2019/module.d.ts",
|
||
|
"version": "6.1.4"
|
||
|
}
|