forked from node-opcua/node-opcua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.16 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "node-opcua",
"version": "0.1.0",
"private": true,
"description": "pure nodejs OPCUA SDK",
"homepage": "http://node-opcua.github.io/",
"main": "index.js",
"bin": {},
"directories": {
"test": "test"
},
"scripts": {
"_x_preinstall": "npm i browserify -g",
"postinstall": "node ./node_modules/lerna/bin/lerna.js bootstrap && node ./node_modules/lerna/bin/lerna.js run generate",
"pretest": "node ./node_modules/lerna/bin/lerna.js run pretest",
"_old_test": "cd source && mocha test --color -R spec --recursive --timeout 200000 --bail",
"test": "cd packages && node run_all_mocha_tests.js",
"test:withnode ./node_modules/lerna/bin/lerna.js": "node ./node_modules/lerna/bin/lerna.js run test",
"eslint": "eslint packages/*/src/**.js packages/*/test/ ",
"eslint-fix": "eslint --fix packages/*/src/**.js packages/*/__tests__/ utils/*.js scripts/*.js",
"generate_doc": "make doc",
"generate_autodoc": "./node_modules/autodoc/bin/autodoc -o _tmp_generated_doc bin/binaryStream.js"
},
"repository": {
"type": "git",
"url": "git://github.com/node-opcua/node-opcua.git"
},
"keywords": [
"OPCUA",
"opcua",
"m2m",
"iot",
"opc ua",
"internet of things"
],
"author": "Etienne Rossignon",
"license": "MIT",
"bugs": {
"url": "https://github.com/node-opcua/node-opcua/issues"
},
"devDependencies": {
"@types/node": "^8.0.53",
"app-module-path": "^2.2.0",
"autodoc": "0.6.4",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-preset-env": "^1.6.1",
"babili-webpack-plugin": "^0.1.2",
"benchmark": "2.1.4",
"bignumber.js": "5.0.0",
"coffee-script": "^1.12.7",
"copy-webpack-plugin": "^4.2.3",
"coveralls": "3.0.0",
"csv": "2.0.0",
"cucumber": "^3.1.0",
"enum": "2.5.0",
"eslint": "^4.12.1",
"eyes": "0.1.8",
"jsdoc": "3.5.5",
"litpro": "2.0.0",
"mocha": "4.0.1",
"mocha-lcov-reporter": "1.3.0",
"request": "2.83.0",
"rollup": "^0.52.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"should": "13.1.3",
"sinon": "4.1.2",
"tmp": "0.0.33",
"tracer": "0.8.11",
"typescript": "^2.6.2",
"webpack": "^3.8.1",
"webpack-node-externals": "^1.6.0",
"yuidoc-bootstrap-theme": "*",
"yuidocjs": "*"
},
"typings": "./packages/node-opcua/node-opcua.d.ts",
"dependencies": {
"async": "2.6.0",
"backoff": "2.5.0",
"better-assert": "*",
"bomstrip": "0.1.4",
"byline": "5.0.0",
"colors": "1.1.2",
"date-utils": "^1.2.21",
"deassertify": "^0.1.2",
"delayed": "^1.0.1",
"dequeue": "^1.0.5",
"easy-table": "^1.1.0",
"exit": "^0.1.2",
"fqdn": "0.0.3",
"hexy": "0.2.10",
"humanize": "0.0.9",
"lerna": "^2.5.1",
"ltx": "^2.7.1",
"node-jsrsasign": "0.0.7",
"node-opcua-crypto": "0.0.15",
"node-opcua-pki": "0.0.24",
"once": "^1.4.0",
"progress": "2.0.0",
"q": "^1.5.1",
"set-prototype-of": "^1.0.0",
"sprintf": "0.1.5",
"treeify": "1.0.1",
"underscore": "^1.8.3",
"xml-writer": "^1.7.0",
"yargs": "^10.0.3"
}
}