-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
89 lines (89 loc) · 2.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "bnc-assist",
"version": "0.10.3",
"description": "Blocknative Assist js library for Dapp developers",
"main": "lib/assist.min.js",
"scripts": {
"build": "yarn lint && yarn test && node build.js",
"build:dev": "node build.js",
"lint": "eslint src/ --fix",
"pretest": "multidep multidep.json",
"test": "TZ=Europe/Paris jest"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/blocknative/assist.git"
},
"keywords": [
"dapp",
"ethereum"
],
"author": "Block Native",
"license": "MIT",
"bugs": {
"url": "https://github.com/blocknative/assist/issues"
},
"homepage": "https://github.com/blocknative/assist#readme",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"bluebird": "^3.5.3",
"bowser": "^2.0.0-beta.3",
"core-js": "2",
"ow": "^0.13.2",
"rollup-plugin-node-builtins": "^2.1.2",
"uuid": "^3.3.2",
"web3-core-promievent": "^1.0.0-beta.48"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/runtime": "^7.1.5",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-inline-import-data-uri": "^1.0.1",
"babel-plugin-root-import": "^6.1.0",
"dom-testing-library": "^3.16.2",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-import-resolver-babel-plugin-root-import": "^1.1.1",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"ganache-cli": "^6.4.3",
"husky": "^1.3.1",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"jest-css-modules": "^1.1.0",
"jest-dom": "^3.0.0",
"kill-port": "^1.4.0",
"mock-socket": "^8.0.5",
"mockdate": "^2.0.2",
"multidep": "^2.0.2",
"prettier": "^1.15.2",
"regenerator-runtime": "^0.13.1",
"rollup": "^0.67.3",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-string": "^2.0.2",
"rollup-plugin-uglify": "^6.0.2",
"truffle-contract": "^4.0.15",
"web3": "^1.0.0-beta.37"
},
"eslintIgnore": [
"package.json"
]
}