-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.54 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.54 KB
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
{
"name": "@rsauget/flexom-lib",
"version": "3.3.0",
"description": "Library to interact with Flexom servers",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint .",
"build": "rimraf ./dist && tsc && npm link",
"test": "mocha",
"test:watch": "mocha --watch",
"prepublishOnly": "npm run lint && npm run build"
},
"bin": {
"flexom": "bin/flexom.js"
},
"author": {
"name": "Raphaël Sauget"
},
"devDependencies": {
"@types/async-retry": "1.4.8",
"@types/chai": "4.3.16",
"@types/jsonwebtoken": "9.0.6",
"@types/lodash": "4.17.6",
"@types/mocha": "10.0.7",
"@types/node": "20.14.10",
"@types/ws": "8.5.10",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"chai": "5.1.1",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"mocha": "10.6.0",
"nodemon": "3.1.4",
"prettier": "3.3.2",
"release-it": "17.4.1",
"rimraf": "5.0.8",
"ts-node": "10.9.2",
"typescript": "5.5.3"
},
"dependencies": {
"@stomp/stompjs": "^7.0.0",
"async-retry": "^1.3.3",
"axios": "^1.0.0",
"form-urlencoded": "^6.0.5",
"inquirer": "^9.0.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"pino": "^9.0.0",
"ws": "^8.3.0"
}
}