-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 3.03 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "ethPM-Remix-Plugin",
"version": "1.0.0",
"description": "Generate a persistent interface for your smart contract directly from Remix.",
"contributors": [
{
"name": "Nick Gheorghita",
"email": "[email protected]"
}
],
"main": "./dist/index.js",
"dependencies": {
"@remixproject/plugin": "^0.1.14",
"@types/web3": "^1.0.19",
"ajv": "^6.10.2",
"aws-sdk": "^2.525.0",
"axios": "^0.19.0",
"bn.js": "^4.11.8",
"child_process": "^1.0.2",
"debug": "^3.1.0",
"deep-equal": "^1.0.1",
"ethpm-spec": "git+https://github.com/ethpm/ethpm-spec.git",
"events": "^3.0.0",
"file-saver": "^2.0.2",
"fp-ts": "^2.0.5",
"fs": "0.0.1-security",
"git-branch-is": "^3.0.0",
"io-ts": "^1.3.0",
"ipfs-http-client": "^27.0.0",
"ipfs-unixfs": "^0.1.16",
"ipld-dag-pb": "^0.18.1",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.19",
"net": "^1.0.2",
"original-require": "^1.0.1",
"remixd": "^0.1.8-alpha.7",
"source-map-support": "^0.5.9",
"tls": "0.0.1",
"web3": "^1.0.0-beta.36"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@types/deep-equal": "^1.0.1",
"@types/jest": "^23.3.1",
"@types/json-stable-stringify": "^1.0.32",
"@types/node": "^12.7.4",
"@types/web3": "^1.0.11",
"babel-plugin-module-resolver": "^3.1.1",
"babel-preset-env": "^1.7.0",
"del": "^3.0.0",
"dependency-cruiser": "^4.6.3",
"dts-bundle": "^0.7.3",
"file-loader": "^4.2.0",
"git-scripts": "^0.2.1",
"glob": "^7.1.3",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-debug": "^4.0.0",
"gulp-plumber": "^1.2.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-typedoc": "^2.2.0",
"gulp-typescript": "^5.0.0-alpha.3",
"ipfs": "^0.34.4",
"ipfsd-ctl": "^0.42.0",
"jest": "^24.1.0",
"lit-element": "^2.1.0",
"surge": "^0.20.5",
"ts-jest": "^24.0.1",
"ts-loader": "^5.4.5",
"tsconfig-paths": "^3.5.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.1",
"typedoc": "^0.14.0",
"typedoc-plugin-external-module-name": "^2.0.0",
"typescript": "^3.5.2",
"vinyl-fs": "^3.0.3",
"vinyl-paths": "^2.1.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.2.1"
},
"git": {
"scripts": {
"pre-push": "if git-branch-is master; then npm run deploy; fi"
}
},
"scripts": {
"start": "webpack --watch",
"build": "webpack --config webpack.prod.js",
"serve": "webpack-dev-server --config webpack.dev.js",
"deploy": "npm run build && surge --project ./dist --domain ethpm.surge.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethpm/remix-plugin"
},
"keywords": [
"smart contract",
"interface",
"abi",
"dapp",
"web3",
"ethpm"
],
"author": "Nick Gheorghita",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethpm/remix-plugin"
},
"homepage": "https://github.com/ethpm/remix-plugin"
}