-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
68 lines (68 loc) · 2.04 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
{
"name": "dslink",
"license": "Apache-2.0",
"version": "2.2.21",
"main": "js/node.js",
"module": "es/node.js",
"repository": {
"type": "git",
"url": "https://github.com/IOT-DSA/sdk-dslink-ts.git"
},
"author": {
"name": "Rick Zhou",
"email": "[email protected]"
},
"devDependencies": {
"@types/base64-js": "^1.3.0",
"@types/chai": "^4.2.11",
"@types/karma": "^5.0.0",
"@types/mocha": "^7.0.2",
"@types/msgpack-lite": "^0.1.7",
"@types/node": "^14.0.11",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/ws": "^7.2.5",
"@types/yargs": "^15.0.5",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typedoc": "^0.17.7",
"typescript": "^3.9.5"
},
"dependencies": {
"axios": "^0.21.2",
"base64-js": "^1.3.1",
"denque": "^1.4.1",
"moment-timezone": "^0.5.28",
"msgpack-lite": "^0.1.26",
"ws": "^7.4.6",
"yargs": "^15.3.1"
},
"resolutions": {
"**/minimist": "^1.2.5",
"**/is-svg": "^4.2.2",
"node-forge": "^0.10.0"
},
"scripts": {
"js-example": "parcel example/browser/basic.html --out-dir temp --open --no-source-maps ",
"node-example": "node ./example/nodejs-requester/list.js",
"query-example": "parcel example/query-react/react-hook.html --out-dir temp --open --no-source-maps ",
"buildWeb": "parcel build ts/web.ts --no-minify",
"buildDoc": "typedoc --options ./typedocconfig.js",
"test": "mocha 'ts/**/*.spec.ts'",
"test-nyc": "nyc --skip-full mocha 'js/**/*.spec.js' && nyc report --reporter=text-lcov | coveralls",
"test-karma": "karma start",
"prettier-check": "prettier --check \"ts/**/*.+(ts|tsx)\"",
"prettier-write": "prettier --write \"ts/**/*.+(ts|tsx)\"",
"build-es": "tsc --module es2020 --outDir ./es"
}
}