-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
103 lines (103 loc) · 2.81 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@ndustrial/contxt-sdk",
"version": "5.6.0",
"description": "",
"main": "lib/index.js",
"module": "esm/index.js",
"type": "commonjs",
"publishConfig": {
"access": "public"
},
"browser": {
"./esm/bus/index.js": "./esm/bus/index.browser.js",
"./lib/bus/index.js": "./lib/bus/index.browser.js",
"./esm/bus/webSocketConnection.js": "./esm/bus/webSocketConnection.browser.js",
"./lib/bus/webSocketConnection.js": "./lib/bus/webSocketConnection.browser.js"
},
"scripts": {
"build": "gulp build",
"lint": "eslint --cache --fix --format=visualstudio .",
"prepare": "npm run build",
"test": "npm run lint && npm run test:js",
"test:js": "NODE_ENV=test mocha --config 'support/mocharc.yml' 'src/**/*.spec.js'",
"test:js:dev": "npm run test:js -- --watch",
"test:js:inspect": "npm run test:js -- --inspect-brk",
"watch": "gulp watch"
},
"author": "ndustrial.io <[email protected]> (ndustrial.io)",
"license": "ISC",
"repository": "github:ndustrialio/contxt-sdk-js",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": "> 0.5%, last 2 versions, Firefox ESR, not dead",
"node": "6"
},
"useBuiltIns": "usage",
"corejs": "3.6.4"
}
]
],
"plugins": [
"istanbul"
]
},
"dependencies": {
"auth0-js": "^9.14.2",
"axios": "^1.6.8",
"change-case": "^4.1.2",
"core-js": "^3.39.0",
"lodash.has": "^4.5.2",
"lodash.isplainobject": "^4.0.6",
"lodash.once": "^4.1.1",
"qs": "^6.9.6",
"url-parse": "^1.4.7",
"uuid": "^9.0.0",
"ws": "^8.8.0"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/register": "^7.25.9",
"@eslint/compat": "^1.2.2",
"babel-plugin-istanbul": "^7.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^8.0.1",
"del": "^6.1.1",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-formatter-visualstudio": "^8.40.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"faker": "^5.5.3",
"fast-glob": "^3.2.4",
"globals": "^15.13.0",
"gulp": "^5.0.0",
"gulp-babel": "^8.0.0",
"gulp-sourcemaps": "^2.6.5",
"husky": "^9.1.7",
"jsdoc-to-markdown": "^7.1.1",
"lodash.omit": "^4.5.0",
"lodash.pick": "^3.1.0",
"lodash.sortby": "^4.7.0",
"lodash.times": "^4.3.2",
"mocha": "^10.3.0",
"mock-socket": "^9.1.5",
"prettier": "^3.3.3",
"pretty-quick": "^4",
"proxyquire": "^2.1.0",
"rosie": "^2.1.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.2.0"
}
}