-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.45 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
{
"name": "mam.tools.js",
"version": "0.5.1",
"description": "A library making the use of mam more easy",
"keywords": [
"iota",
"mam",
"dlt",
"tangle",
"m2m",
"iot"
],
"author": {
"name": "Robin Lamberti",
"email": "lamberti.robin@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/cr0ssing/mam.tools.js.git"
},
"license": "ISC",
"main": "lib/mamClient.js",
"bin": {
"mam": "lib/mamCli.js"
},
"scripts": {
"test": "cross-env DEBUG=mam mocha",
"build-native": "pkg --out-path bin -t linux-x86,macos-x86,win-x86,linux-x64,macos-x64,win-x64 lib/mamCli.js",
"readme": "jsdoc2md -t jsdoc2md/README.hbs lib/mamClient.js lib/types.js > README.md",
"markdown": "jsdoc2md lib/mamClient.js lib/types.js > api.md",
"docs": "jsdoc lib/mamClient.js lib/types.js",
"cli-debug": "cross-env DEBUG=mam node lib/mamCli.js",
"cli": "node lib/mamCli.js",
"web": "browserify lib/mamClient.js > mam.tools.web.js"
},
"dependencies": {
"debug": "^3.1.0",
"iota.lib.js": "^0.4.7",
"mam.client.js": "git+ssh://git@github.com/iotaledger/mam.client.js.git",
"minimist": "^1.2.0",
"supports-color": "^5.4.0",
"winston": "^3.0.0"
},
"devDependencies": {
"browserify": "^16.2.2",
"pkg": "4.3.1",
"chai": "^4.1.2",
"cross-env": "^5.2.0",
"jsdoc": "^3.5.5",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^5.2.0",
"rewire": "^4.0.1"
}
}