-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
95 lines (95 loc) · 2.63 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "node-red-contrib-lwm2m",
"version": "2.12.3",
"description": "Node-RED nodes for OMA LwM2M",
"repository": {
"type": "git",
"url": "https://github.com/CANDY-LINE/node-red-contrib-lwm2m.git"
},
"author": "Daisuke Baba <baba.daisuke@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/CANDY-LINE/node-red-contrib-lwm2m/issues"
},
"scripts": {
"build": "gulp build",
"test": "NODE_ENV=development gulp test",
"clean": "gulp clean",
"prepare": "gulp build",
"preinstall": "if [ -d ./.git ]; then git submodule update --init --recursive;true; fi",
"install": "node-pre-gyp install --fallback-to-build --target_arch=${ARCH:-$(node -e 'console.log(require(\"os\").arch())')}",
"package": "node-pre-gyp package"
},
"os": [
"!win32"
],
"homepage": "https://github.com/CANDY-LINE/node-red-contrib-lwm2m#readme",
"keywords": [
"node-red",
"OMA",
"LwM2M",
"Wakaama",
"tinydtls",
"dtls",
"coap",
"CANDY RED",
"CANDY EGG"
],
"main": "dist/lwm2m.js",
"binary": {
"module_name": "node_lwm2m",
"module_path": "./dist/binding/{node_abi}-{platform}-{arch}",
"host": "https://github.com/CANDY-LINE/node-red-contrib-lwm2m/releases/download/",
"remote_path": "{version}",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz"
},
"bundledDependencies": [
"node-pre-gyp"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-minify": "^0.3.0",
"chai": "^4.3.4",
"del": "^2.2.2",
"gulp": "^4.0.2",
"gulp-babel": "^6.1.3",
"gulp-clean-css": "^3.9.3",
"gulp-cli": "^2.3.0",
"gulp-header": "^2.0.5",
"gulp-htmlmin": "^4.0.0",
"gulp-if": "^2.0.2",
"gulp-jshint": "^2.1.0",
"gulp-less": "^4.0.0",
"gulp-manifest": "^0.1.1",
"gulp-mocha": "^5.0.0",
"gulp-noop": "^1.0.1",
"gulp-resources": "^0.5.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.0",
"gulp-yaml": "^1.0.1",
"jshint": "^2.12.0",
"jshint-stylish": "^2.2.1",
"mocha": "^5.0.4",
"node-gyp": "^5.1.1",
"node-pre-gyp-github": "git+https://github.com/OpenWebCAD/node-pre-gyp-github.git",
"sinon": "^4.5.0",
"sinon-chai": "^3.6.0",
"supertest": "^3.0.0"
},
"dependencies": {
"debug": "^4.3.1",
"nan": "^2.14.2",
"node-pre-gyp": "^0.14.0",
"source-map-support": "^0.4.2",
"systeminformation": "^5.3.1"
},
"node-red": {
"nodes": {
"lwm2m": "dist/lwm2m.js"
}
}
}