-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
79 lines (79 loc) · 2.13 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "arduino-iot-js",
"version": "0.14.1",
"license": "GPLv3",
"description": "JS module providing Arduino Create IoT Cloud Connection",
"main": "./lib/index.js",
"module": "./es/index.js",
"jsnext:main": "es/index.js",
"files": [
"lib",
"es",
"src"
],
"directories": {
"lib": "lib"
},
"dependencies": {
"@arduino/cbor-js": "arduino/cbor-js",
"jws": "^4.0.0",
"mqtt": "^4.3.7",
"node-fetch": "^2.6.7",
"rxjs": "^6.5.5",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"@rollup/plugin-url": "^5.0.1",
"@types/expect.js": "~0.3.29",
"@types/jest": "^26.0.0",
"@types/jws": "^3.2.2",
"@types/mqtt": "^2.5.0",
"@types/node": "^14.0.13",
"@types/node-fetch": "^2.5.7",
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"@types/sinon": "^7.5.1",
"@types/whatwg-fetch": "0.0.33",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.3.3",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-sizes": "^1.0.2",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"typescript": "^3.9.5"
},
"scripts": {
"test": "npm run build && jest --config ./jest.config.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"clean": "rimraf lib es",
"build:es": "rollup -c",
"build:lib": "rollup -c ./rollup.config.lib.js",
"build": "npm run clean && npm run build:es && npm run build:lib",
"dev": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arduino/arduino-iot-js.git"
},
"keywords": [
"arduino",
"create",
"cloud",
"plugin",
"iot"
],
"contributors": [
"Fabrizio Mirabito <[email protected]>",
"Francesco Pirrotta (pirropirro) <[email protected]>"
]
}