forked from wanswap/snapshot.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·46 lines (46 loc) · 1.17 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
{
"name": "@wanswap/snapshot.js",
"version": "0.1.0",
"repository": "wanswap/snapshot.js",
"license": "MIT",
"main": "dist/snapshot.cjs.js",
"module": "dist/snapshot.esm.js",
"browser": "dist/snapshot.min.js",
"dependencies": {
"@wansproject/abi": "^5.0.4",
"@wansproject/address": "^5.0.4",
"@wansproject/contracts": "^5.0.3",
"@wansproject/units": "^5.0.3",
"json-to-graphql-query": "^2.0.0"
},
"devDependencies": {
"@wansproject/providers": "^5.0.9",
"@types/node": "^13.9.5",
"bluebird": "^3.7.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"rollup": "^2.3.0",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.27.0",
"typescript": "^3.8.3"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "node test/index.ts",
"pretest": "npm run build",
"lint": "prettier 'src/**/*.ts' -w -c"
},
"files": [
"dist",
"src",
"connectors",
"plugins"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}