-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.08 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
68
69
70
71
72
73
74
{
"name": "@ulms/api-clients",
"version": "7.23.2",
"description": "JavaScript API clients for ULMS platform",
"keywords": [],
"homepage": "https://github.com/foxford/ulms-api-clients-js#readme",
"bugs": {
"url": "https://github.com/foxford/ulms-api-clients-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/foxford/ulms-api-clients-js.git"
},
"license": "MIT",
"author": "OLC Netology group LLC",
"main": "lib/index.js",
"module": "es/index.js",
"directories": {
"lib": "src"
},
"files": [
"es",
"lib"
],
"scripts": {
"build": "npm run build:lib && npm run build:es",
"build:es": "BABEL_ENV=es babel src --config-file ./.babelrc.json -d es --copy-files",
"build:lib": "BABEL_ENV=lib babel src --config-file ./.babelrc.json -d lib --copy-files",
"lint": "eslint ./src --cache",
"pre-commit": "lint-staged",
"prebuild": "rm -rf lib es",
"prelint": "prettier --check .",
"prepare": "husky install",
"prepublishOnly": "npm test && npm run build",
"test": "jest --coverage"
},
"dependencies": {
"axios": "1.6.2",
"debug": "4.3.7",
"events": "3.3.0",
"lodash": "4.17.21",
"mime": "2.6.0",
"mqtt": "3.0.0",
"nats.ws": "1.7.2",
"p-queue": "8.0.1",
"uuid": "8.3.2"
},
"devDependencies": {
"@babel/cli": "7.24.5",
"@babel/core": "7.24.5",
"@babel/eslint-parser": "7.24.5",
"@babel/plugin-transform-modules-commonjs": "7.24.1",
"@babel/preset-env": "7.24.5",
"@babel/register": "7.23.7",
"babel-jest": "26.6.3",
"babel-loader": "9.1.3",
"babel-plugin-annotate-pure-calls": "0.4.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-sonarjs": "0.25.1",
"eslint-plugin-unicorn": "52.0.0",
"husky": "9.0.11",
"jest": "26.6.3",
"lint-staged": "15.2.2",
"prettier": "3.2.5"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix"
}
}