evergreen/distribution/client/package.json

93 lines
2.2 KiB
JSON

{
"name": "evergreen-client",
"version": "1.0.0",
"description": "",
"main": "src/client.js",
"scripts": {
"prestart": "tsc",
"start": "node build/client.js",
"pretest": "eslint src/. test/. --config .eslintrc.json",
"eslint": "npm run pretest",
"test": "jest",
"postinstall": "patch-package"
},
"author": "R Tyler Croy",
"license": "GPL-3.0",
"devDependencies": {
"@types/feathersjs__feathers": "^3.0.5",
"@types/jest": "^23.3.3",
"@types/node": "^10.11.4",
"@types/tmp": "0.0.33",
"asciidoctor.js": "^1.5.7-rc.1",
"css-loader": "^1.0.0",
"eslint": "^4.19.1",
"hoek": "^5.0.4",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"memfs": "^2.9.4",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.0",
"ts-jest": "^23.10.3",
"typescript": "^3.1.1",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"@feathersjs/authentication-client": "^1.0.4",
"@feathersjs/configuration": "^2.0.0",
"@feathersjs/express": "^1.2.3",
"@feathersjs/feathers": "^3.1.7",
"@feathersjs/rest-client": "^1.4.1",
"@feathersjs/socketio": "^3.2.2",
"@feathersjs/socketio-client": "^1.1.0",
"cron": "^1.3.0",
"elliptic": "^6.4.1",
"eventsource": "^1.0.5",
"mkdirp": "^0.5.1",
"node-stream-zip": "^1.7.0",
"patch-package": "^5.1.1",
"promise-request-retry": "^1.0.1",
"request-promise": "^4.2.2",
"socket.io-client": "^2.1.1",
"tail": "^1.3.0",
"tslib": "^1.9.3",
"unzip": "^0.1.11",
"url-parse": "^1.4.3",
"uuid": "^3.3.2",
"winston": "^2.4.3",
"xmlrpc": "^1.3.2"
},
"jest": {
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"<rootDir>/ui/index.js",
"<rootDir>/src/lib/ui.js"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"coverageReporters": [
"json",
"lcov",
"text-summary"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"coverageThreshold": {
"global": {
"statements": 54,
"branches": 41,
"functions": 45,
"lines": 54
}
}
}
}