-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.56 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
{
"name": "iota-ternary",
"version": "0.3.2",
"description": "Fast utility functions for conversion between trytes, trits and bytes",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc --project tsconfig.json",
"test": "mocha test/**/*.spec.ts --require ts-node/register",
"test:watch": "npm run test -- --watch --watch-extensions=ts",
"bench:bytes-to-trits": "node bench/bytes-to-trits",
"bench:trits-to-bytes": "node bench/trits-to-bytes",
"bench:trytes-to-trits": "node bench/trytes-to-trits",
"bench:trits-to-trytes": "node bench/trits-to-trytes",
"bench:number-to-trits": "node bench/number-to-trits",
"bench:trits-to-number": "node bench/trits-to-number",
"bench:trytes-to-number": "node bench/trytes-to-number",
"bench:number-to-trytes": "node bench/number-to-trytes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexpods/iota-ternary.git"
},
"keywords": [
"iota",
"ternary",
"trits",
"trytes",
"conversion"
],
"author": "alexpods <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/alexpods/iota-ternary/issues"
},
"homepage": "https://github.com/alexpods/iota-ternary#readme",
"devDependencies": {
"@types/chai": "^4.1.1",
"@types/mocha": "^2.2.46",
"@types/node": "^9.3.0",
"benchmark": "^2.1.4",
"chai": "^4.1.2",
"iota.lib.js": "^0.4.6",
"mocha": "^5.0.0",
"ts-node": "^4.1.0",
"typescript": "^2.6.2"
}
}