-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
48 lines (48 loc) · 1.29 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
{
"name": "aws-iot-device-sdk-v2",
"version": "1.0.0-dev",
"description": "NodeJS API for the AWS IoT service",
"homepage": "https://github.com/aws/aws-iot-device-sdk-js-v2",
"repository": {
"type": "git",
"url": "git+https://github.com/aws/aws-iot-device-sdk-js-v2.git"
},
"keywords": [
"aws",
"iot"
],
"contributors": [
"AWS SDK Common Runtime Team <[email protected]>"
],
"license": "Apache-2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": "./dist/browser.js",
"scripts": {
"tsc": "tsc",
"prepare": "npm run tsc",
"build": "tsc",
"test": "npm run test:native",
"test:node": "npm run test:native",
"test:native": "npx jest --runInBand --verbose --config test/native/jest.config.js --forceExit"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^10.17.54",
"@types/puppeteer": "^5.4.7",
"@types/ws": "8.5.4",
"cmake-js": "^7.3.0",
"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.24.8",
"typedoc-plugin-merge-modules": "^5.1.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@aws-sdk/util-utf8-browser": "^3.109.0",
"aws-crt": "1.21.8"
}
}