This repository has been archived by the owner on Aug 1, 2019. It is now read-only.
forked from SemkoDev/romeo.lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.82 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
61
62
63
64
65
{
"name": "romeo.lib",
"version": "0.1.5",
"description": "Romeo protocol library for IOTA",
"main": "dist/index.js",
"homepage": "https://semkodev.com",
"author": "Roman Semko <[email protected]> (http://twitter.com/RomanSemko)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/SemkoDev/romeo.lib.git"
},
"files": [
"src",
"dist",
"README.md",
"LICENSE.md"
],
"keywords": [
"blockchain",
"IOTA",
"tangle",
"p2p"
],
"watch": {
"dist": "{src,test}/**/*.js"
},
"scripts": {
"test": "mocha --timeout 240000 --bail --ui bdd $(find src -name \"*.test.js\")",
"clean": "rimraf dist",
"fix": "prettier --single-quote --write index.js src/*.js src/**/*.js package.json *.md",
"dist": "babel ./src --out-dir dist/ --ignore ./node_modules --ignore __tests__ --copy-files",
"make": "npm run clean && npm run fix && npm run dist",
"watch": "npm-watch"
},
"dependencies": {
"@ledgerhq/hw-transport-u2f": "^4.21.0",
"async": "^2.6.0",
"better-queue": "^3.8.10",
"better-queue-memory": "^1.0.2",
"hw-app-iota": "git+https://github.com/IOTA-Ledger/hw-app-iota.js.git",
"iota.lib.js": "^0.5.0",
"is-online": "^7.0.0",
"mocha": "^5.2.0",
"npm-watch": "^0.3.0",
"password-validator": "^4.1.1",
"pouchdb": "^7.0.0",
"rimraf": "^2.6.2",
"semver": "^5.5.1",
"sha.js": "^2.4.11",
"tmp": "^0.0.33"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-runtime": "^6.26.0",
"chai": "^4.1.2",
"parcel-bundler": "^1.9.7",
"prettier": "^1.14.2"
}
}