-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "web3-zsl",
"version": "0.1.5",
"description": "ZSL extension for Web3",
"main": "dist/web3-zsl.cjs.js",
"repository": "git@github.com:Glyff/web3-zsl.git",
"author": "Vedmant <vedmant@gmail.com>",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "DEBUG=app:*,test jest --bail --forceExit --runInBand --testNamePattern"
},
"dependencies": {
"web3": "1.0.0-beta.48"
},
"files": [
"dist",
"index.d.ts"
],
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/runtime": "^7.3.1",
"babel-jest": "^24.1.0",
"co": "^4.6.0",
"cross-env": "^5.2.0",
"debug": "^4.1.1",
"jest": "^24.1.0",
"rollup": "^1.1.2",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-json": "^3.1.0"
}
}