-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.04 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "logzio-node-tools",
"private": true,
"version": "0.0.1",
"description": "the perfect node templates & tools",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/logzio/node-toolbox.git"
},
"scripts": {
"clean": "lerna clean && rm -rf node_modules",
"postinstall": "husky install",
"test": "jest --config jest.config.cjs",
"compile": "rollup -c --ignore @logzio-node-toolbox/test",
"test:watch": "jest --watch --config jest.config.cjs",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --config jest.config.cjs",
"lint": "eslint -c .eslintrc.cjs --quiet --color packages/**/*.js",
"checkLicense": "license-checker | grep 'licenses:' | sort -u",
"ncu": "lerna run upkg && yarn upkg",
"upkg": "ncu -u"
},
"author": "Nir Winkler",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@lerna/batch-packages": "^3.16.0",
"@lerna/filter-packages": "^4.0.0",
"@lerna/project": "^4.0.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-typescript": "^8.3.0",
"@rollup/plugin-node-resolve": "13.0.6",
"@rollup/plugin-commonjs": "21.0.1",
"@types/lodash": "^4.14.176",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"babel-jest": "^27.3.1",
"core-js": "^3.19.0",
"eslint": "8.22.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "7.0.4",
"jest": "27.3.1",
"lerna": "^4.0.0",
"license-checker": "25.0.1",
"minimist": "^1.2.5",
"nodemon": "2.0.14",
"npm-check-updates": "11.8.5",
"prettier": "^2.4.1",
"rollup": "2.58.3",
"rollup-plugin-copy": "^3.4.0",
"typescript": "4.4.4"
},
"engines": {
"node": "<=15.3.0"
},
"volta": {
"node": "16.9.1",
"yarn": "1.22.10"
}
}