-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.18 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
{
"name": "eth-url-parser",
"version": "1.0.4",
"description": "Ethereum url parsing library",
"scripts": {
"test": "npm run build && node ./tests | tap-spec",
"build": "rollup -c",
"start": "rollup -c -w",
"prepublish": "npm run build"
},
"keywords": [
"ethereum",
"url",
"parser",
"eip681",
"erc681",
"web3"
],
"author": "Bruno Barbieri",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:brunobar79/eth-url-parser"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.24.1",
"rollup": "^0.54.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-peer-deps-external": "^2.0.0",
"tap-spec": "^5.0.0",
"tape": "^4.9.1"
},
"files": [
"dist"
],
"dependencies": {
"bignumber.js": "^7.2.1",
"qs": "^6.5.2"
},
"resolutions": {
"**/trim": "0.0.3"
}
}