forked from ethereum/remix-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.43 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
{
"name": "remix-plugin",
"version": "0.0.2-alpha.10",
"description": "Ethereum IDE and tools for the web",
"contributors": [
{
"name": "Yann Levreau",
"email": "yann@ethdev.com"
},
{
"name": "François Guezengar",
"email": "francois.guezengar@hotmail.fr"
}
],
"files": [
"dist"
],
"types": "dist/index.d.ts",
"browser": "dist/index.js",
"module": "dist/index.js",
"main": "dist/index.js",
"scripts": {
"start": "webpack --watch",
"build": "webpack",
"test": "jest",
"test:engine": "jest ./project/engine",
"publish": "npm run build && npm run publish:engine && npm run publish:plugin",
"publish:engine": "cd projects/engine && npm publish --access public",
"publish:plugin": "cd projects/client && npm publish --access public",
"publish:plugin-ws": "cd projects/client-ws && npm publish --access public",
"publish:plugin-iframe": "cd projects/client-iframe && npm publish --access public",
"e2e:serve": "run-p serve:ide serve:ethdoc",
"serve:ide": "cd ./examples/ide && webpack-dev-server",
"serve:ethdoc": "cd ./examples/plugins/ethdoc && webpack-dev-server --config webpack.dev.js",
"build:ethdoc": "cd ./examples/plugins/ethdoc && webpack --config webpack.prod.js",
"deploy:ethdoc": "surge ./examples/plugins/ethdoc/dist remix-ethdoc-plugin.surge.sh",
"deploy:etherscan": "surge ./examples/plugins/etherscan remix-etherscan-plugin.surge.sh"
},
"dependencies": {
"events": "^3.0.0"
},
"devDependencies": {
"@types/events": "^1.2.0",
"@types/jest": "^24.0.9",
"@types/node": "^12.12.3",
"@types/ws": "^6.0.3",
"cypress": "^3.2.0",
"jest": "^24.1.0",
"lit-element": "^2.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.15.2",
"solc": "^0.5.7",
"surge": "^0.20.5",
"ts-jest": "^24.0.1",
"ts-loader": "^5.4.5",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^5.11.0",
"typescript": "^3.5.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.2.1"
},
"standard": {
"ignore": [
"node_modules/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum/remix-plugin.git"
},
"author": "cpp-ethereum team",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereum/remix-plugin/issues"
},
"homepage": "https://github.com/ethereum/remix-plugin#readme"
}