-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.61 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
{
"name": "raam.client.js",
"version": "0.9.0",
"description": "IOTA-based messaging protocol, allowing access of arbitrary messages in O(1)",
"keywords": [
"iota",
"dlt",
"tangle",
"quantum-proof",
"trinary",
"crypto",
"library",
"javascript",
"nodejs",
"API"
],
"repository": {
"type": "git",
"url": "https://github.com/DLTcollab/raam.client.js"
},
"author": {
"name": "Robin Lamberti"
},
"license": "ISC",
"main": "lib/raam.js",
"types": "types/index.d.ts",
"scripts": {
"docs": "jsdoc2md -t docs/api.hbs lib/raam.js lib/raamReader.js > docs/api.md",
"lint": "eslint lib/*.js examples/*.js",
"lint-fix": "eslint --fix lib/*.js examples/*.js"
},
"dependencies": {
"@iota/bundle": "1.0.0-beta.11",
"@iota/bundle-validator": "1.0.0-beta.11",
"@iota/checksum": "1.0.0-beta.11",
"@iota/converter": "1.0.0-beta.11",
"@iota/core": "1.0.0-beta.11",
"@iota/curl": "1.0.0-beta.11",
"@iota/http-client": "1.0.0-beta.11",
"@iota/kerl": "1.0.0-beta.11",
"@iota/pad": "1.0.0-beta.11",
"@iota/signing": "1.0.0-beta.11",
"@iota/transaction": "1.0.0-beta.11",
"@iota/transaction-converter": "1.0.0-beta.11",
"@iota/validators": "1.0.0-beta.11",
"lazy-arr": "^1.1.1",
"zeromq": "^5.1.0"
},
"devDependencies": {
"jsdoc-to-markdown": "^5.0.0",
"marked": "^1.1.1",
"mocha": "^5.2.0",
"babel-eslint": "^8.2.2",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2"
}
}