-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 988 Bytes
/
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
{
"name": "iota.lib.ts",
"version": "0.1.0",
"author": "Marco Paland <marco@paland.com>",
"license": "MIT",
"description": "Typescript library for IOTA",
"repository": {
"type": "git",
"url": "git+https://github.com/mpaland/iota.lib.ts.git"
},
"keywords": [
"IOTA",
"Typescript",
"library"
],
"bugs": {
"url": "https://github.com/mpaland/iota.lib.ts/issues"
},
"homepage": "https://github.com/mpaland/iota.lib.ts#readme",
"scripts": {
"build": "tsc -p ./src",
"pretest": "tsc -p ./test",
"test": "mocha ./test/out/test/**/*_test.js",
"dev": "lite-server"
},
"dependencies": {
"mipher": "^1.1.3",
"bignumber.js": "^5.0.0",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"typescript": "latest",
"lite-server": "latest",
"ts-node": "^4.1.0",
"chai": "^4.1.2",
"mocha": "^4.1.0",
"@types/chai": "^4.1.0",
"@types/mocha": "^2.2.46",
"@types/bignumber.js": "^5.0.0"
}
}