-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.83 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": "@ironsource/mobile-api-lib-js",
"version": "1.1.1",
"description": "IronSource API implementations for Node.JS",
"typings": "lib/index.d.ts",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**"
],
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepublishOnly": "cp ../README.md . && cp ../LICENSE . ",
"test": "mocha --no-timeouts -t 40000 --colors -r ts-node/register -r dotenv/config tests/unit_tests/*.test.ts",
"integrationTest": "mocha --no-timeouts -t 60000 --colors -r ts-node/register -r dotenv/config tests/integration_tests/*.test.ts"
},
"author": "ironSource Ltd.",
"repository": {
"type": "git",
"url": "https://github.com/ironSource/mobile-api-lib-js.git"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/async": "^3.2.10",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-things": "0.0.34",
"@types/lodash": "^4.14.149",
"@types/mocha": "^5.2.7",
"@types/node-gzip": "^1.1.0",
"@types/sinon": "^10.0.13",
"@types/sinon-chai": "^3.2.8",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-things": "^0.2.0",
"dotenv": "^16.0.1",
"eslint": "^8.18.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"mocha": "^9.2.2",
"moment": "^2.29.2",
"rimraf": "^3.0.0",
"showdown": "^2.1.0",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0",
"ts-mocha": "^9.0.2",
"typedoc": "^0.23.10",
"typedoc-plugin-markdown": "^3.13.4",
"typescript": "^4.7.4"
},
"dependencies": {
"async": "^3.0.0",
"axios": "^0.27.2",
"form-data": "^4.0.0",
"lodash": "^4.17.15",
"node-gzip": "^1.1.2",
"zlib": "^1.0.5"
}
}