forked from awslabs/aws-crt-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.95 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
{
"name": "aws-crt",
"version": "1.0.0-dev",
"description": "NodeJS/browser bindings to the aws-c-* libraries",
"homepage": "https://github.com/awslabs/aws-crt-nodejs",
"repository": {
"type": "git",
"url": "git+https://github.com/awslabs/aws-crt-nodejs.git"
},
"contributors": [
"AWS Common Runtime Team <[email protected]>"
],
"license": "Apache-2.0",
"main": "./dist/index.js",
"browser": "./dist.browser/browser.js",
"types": "./dist/index.d.ts",
"scripts": {
"tsc": "node ./scripts/tsc.js",
"test": "npm run test:native",
"test:node": "npm run test:native",
"test:native": "npx jest --runInBand --verbose --config test/native/jest.config.js --forceExit",
"test:browser": "npx jest --runInBand --verbose --config test/browser/jest.config.js --forceExit",
"test:browser:ci": "npm run install:puppeteer && npm run test:browser",
"install:puppeteer": "npm install --save-dev jest-puppeteer puppeteer @types/puppeteer",
"prepare": "node ./scripts/tsc.js && node ./scripts/install.js",
"install": "node ./scripts/install.js"
},
"devDependencies": {
"@types/crypto-js": "^3.1.43",
"@types/jest": "^27.0.1",
"@types/node": "^10.17.54",
"@types/prettier": "2.6.0",
"@types/puppeteer": "^5.4.4",
"@types/uuid": "^3.4.8",
"@types/ws": "^7.4.7",
"aws-sdk": "^2.848.0",
"https-proxy-agent": "^5.0.1",
"jest": "^27.2.1",
"jest-puppeteer": "^5.0.4",
"jest-runtime": "^27.2.1",
"puppeteer": "^3.3.0",
"ts-jest": "^27.0.5",
"typedoc": "^0.22.18",
"typedoc-plugin-merge-modules": "^3.1.0",
"typescript": "^4.7.4",
"uuid": "^8.3.2",
"yargs": "^17.2.1",
"cmake-js": "^6.3.2",
"tar": "^6.1.11"
},
"dependencies": {
"@aws-sdk/util-utf8-browser": "^3.109.0",
"@httptoolkit/websocket-stream": "^6.0.0",
"axios": "^0.24.0",
"crypto-js": "^4.0.0",
"mqtt": "^4.3.7",
"cmake-js": "^6.3.2",
"tar": "^6.1.11"
}
}