This repository has been archived by the owner on Nov 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.61 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "nebenan-eventproxy",
"description": "Nebenan eventproxy helper library",
"author": "Good Hood GmbH <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/goodhood-eu/nebenan-eventproxy#readme",
"repository": "github:goodhood-eu/nebenan-eventproxy",
"bugs": "https://github.com/goodhood-eu/nebenan-eventproxy/issues",
"version": "1.0.1",
"files": [
"dist/*.js"
],
"main": "./dist/index.js",
"scripts": {
"reinstall": "rm -rf node_modules package-lock.json && npm install",
"check": "npm test && npm run lint && echo \"\\033[0;32mReady to publish\\033[0m\"",
"clean": "rm -rf ./dist/ || exit 1",
"build": "NODE_ENV=production babel src --out-dir dist --copy-files",
"prepublishOnly": "npm run check && npm run clean && npm run build",
"lint": "eslint ./",
"lint:tofile": "eslint --no-color -o ./eslint-report.log ./",
"test": "npm run build && TZ='GMT' mocha \"src/*.test.js\"",
"test:tofile": "npm run build && TZ='GMT' mocha --no-colors -R spec \"test/**/*.js\" 2>&1 | tee test-report.log"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-json-strings": "^7.12.1",
"@babel/plugin-transform-strict-mode": "^7.22.5",
"@babel/preset-env": "^7.23.2",
"babel-plugin-add-module-exports": "^1.0.4",
"browserslist-config-nebenan": "^1.0.2",
"chai": "^4.3.10",
"chalk": "^5.3.0",
"eslint": "^8.52.0",
"eslint-config-nebenan-base": "^2.0.3",
"mocha": "^10.2.0",
"proxyquire": "^2.1.3",
"sinon": "^17.0.0"
},
"dependencies": {
"lodash": "^4.17.21"
}
}