-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.46 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": "bdb-multi-ledger",
"version": "1.0.0",
"private": false,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/bigchaindb/multi-ledger-integrations.git"
},
"scripts": {
"release": "standard-version --no-verify",
"clean": "rm -rf dist",
"babel": "./node_modules/.bin/babel src -d dist --source-maps --copy-files",
"build": "npm run clean && npm run babel && node ./dist",
"dev": "./node_modules/.bin/nodemon --debug -L babel.js --ext 'js json'",
"test": "mocha test --timeout 6000 --compilers js:babel-core/register --require babel-polyfill",
"lint": "./node_modules/.bin/eslint --cache .",
"git-hook": "validate-commit-msg && npm run lint"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"bigchaindb-driver": "^0.3.0",
"bip39": "^2.4.0",
"crypto-js": "^3.1.9-1",
"es6-promise": "^4.0.5",
"import-dir": "^0.0.1",
"iota.lib.js": "^0.4.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.24.1",
"dotenv": "^4.0.0",
"eslint": "^4.4.1",
"eslint-config-ascribe": "^3.0.4",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0"
},
"keywords": [
"bigchaindb",
"blockchain",
"decentralized",
"dapp"
]
}