-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "@iotopen/node-lynx",
"version": "2.5.1",
"description": "IoT Open Lynx API package for node",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"prepare": "npm run build:ts",
"lint": "eslint --ext js,ts,tsx --max-warnings 0 src",
"build:ts": "rollup -c",
"dev:ts": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "https://github.com/IoTOpen/node-lynx.git"
},
"keywords": [
"lynx",
"iot",
"IoT Open"
],
"author": "IoT Open",
"license": "Apache 2.0",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.5.0",
"@types/sprintf-js": "^1.1.4",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^7.32.0",
"rollup": "^2.79.1",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.8.4"
},
"dependencies": {
"cross-fetch": "^3.1.5",
"js-base64": "^3.7.3",
"sprintf-js": "^1.1.3"
}
}