FaC: Das alte Flag von Terminen, die in die Zeiterfassung übernommen worden sind, wird ebenfalls berücksichtigt.
29 lines
820 B
JSON
29 lines
820 B
JSON
{
|
|
"name": "nanosocket",
|
|
"version": "1.1.0",
|
|
"description": "tiny modern websocket client",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "npm run rollup && npm run minify && npm run gzip",
|
|
"rollup": "rollup -c",
|
|
"minify": "uglifyjs client.bundle.js -m -c keep_fargs=false > client.min.js",
|
|
"gzip": "gzip -c client.min.js > client.min.js.gz",
|
|
"test": "node test.js",
|
|
"coverage": "tap test.js --coverage --coverage-report=lcov"
|
|
},
|
|
"keywords": [
|
|
"websocket",
|
|
"client"
|
|
],
|
|
"author": "pemrouz (https://github.com/pemrouz)",
|
|
"license": "pemrouz.mit-license.org",
|
|
"devDependencies": {
|
|
"global-mocks": "^1.0.0",
|
|
"rollup-plugin-commonjs": "^8.2.5",
|
|
"rollup-plugin-node-resolve": "^3.0.0",
|
|
"tap": "^10.7.2",
|
|
"uglify-es": "^3.1.3",
|
|
"utilise": "^2.1.4"
|
|
}
|
|
}
|