forked from MEDIARITHMICS/plugins-nodejs-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.96 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
{
"name": "@mediarithmics/plugins-nodejs-sdk",
"version": "0.25.0",
"description": "This is the mediarithmics nodejs to help plugin developers bootstrapping their plugin without having to deal with most of the plugin boilerplate",
"repository": "github:MEDIARITHMICS/plugins-nodejs-sdk",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "./test_sdk_and_examples.sh",
"testOnly": "./testOnly.sh",
"prepublishOnly": "tsc",
"build": "tsc",
"docs": "typedoc --out docs/ --mode modules --target es6 --module commonjs ./src",
"prettier:fix": "prettier --write '**/*.ts'",
"test:Helper": "npm run build && NODE_ENV=development mocha lib/helpers/StatsClient.spec.js"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"body-parser": "^1.20.2",
"chai": "^4.3.10",
"express": "^4.18.2",
"handlebars": "^4.7.8",
"hot-shots": "^10.0.0",
"jsesc": "^3.0.2",
"lodash": "^4.17.21",
"memory-cache": "^0.2.0",
"mocha": "^10.2.0",
"numeral": "^2.0.6",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"sinon": "^17.0.1",
"supertest": "^6.3.3",
"toobusy-js": "^0.5.1",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@types/lodash": "^4.14.200",
"@types/memory-cache": "0.2.5",
"@types/node": "^20.8.10",
"@types/request-promise-native": "^1.0.21",
"@types/toobusy-js": "^0.5.3",
"@types/chai": "^4.3.9",
"@types/jsesc": "^3.0.3",
"@types/mocha": "^10.0.4",
"@types/numeral": "2.0.5",
"@types/sinon": "^17.0.1",
"@typescript-eslint/eslint-plugin": "6.10.0",
"@typescript-eslint/parser": "6.10.0",
"eslint": "8.53.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.1",
"prettier": "3.0.3",
"@types/supertest": "^2.0.15",
"ts-node": "^10.9.1",
"typedoc": "^0.25.3",
"typescript": "^5.2.2"
}
}