-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.55 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
{
"name": "tic.api.js",
"version": "0.5.4",
"description": "Web of trust for contacts in the IOTA network",
"keywords": [
"iota",
"mam",
"dlt",
"tangle",
"m2m",
"iot",
"idot",
"web-of-trust",
"contactbook"
],
"author": {
"name": "Robin Lamberti",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/cr0ssing/tic.api.js.git"
},
"license": "ISC",
"main": "lib/ticApi.js",
"bin": {
"tic": "lib/ticCli.js"
},
"scripts": {
"test": "cross-env DEBUG=mam,tic mocha",
"system-test": "cross-env DEBUG=mam,tic UNMOCK=true mocha --timeout=999999 --grep=\"should compute the score derived from multiple TIC profiles without saved seeds\" test/testTic.js",
"build-native": "pkg --out-path bin -t linux-x86,macos-x86,win-x86,linux-x64,macos-x64,win-x64 lib/ticCli.js",
"docs": "jsdoc2md -t jsdoc2md/api.hbs lib/types.js lib/ticApi.js > docs/api.md",
"docs-html": "jsdoc lib/types.js lib/ticApi.js",
"cli-debug": "cross-env DEBUG=mam,tic node lib/ticCli.js",
"cli": "node lib/ticCli.js",
"web": "browserify lib/ticApi.js --standalone tic > dist/tic.web.js",
"web-example": "opn examples/web/index.html"
},
"dependencies": {
"extend": "^3.0.1",
"mam.tools.js": "^0.5.1"
},
"devDependencies": {
"browserify": "^16.2.2",
"chai": "^4.1.2",
"cross-env": "^5.2.0",
"jsdoc": "^3.5.5",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^5.2.0",
"opn-cli": "^3.1.0",
"pkg": "4.3.1",
"rewire": "^4.0.1"
}
}