forked from nulligun/solc-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.76 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
{
"name": "solc-js",
"version": "1.0.1",
"description": "cross-browser solidity compiler for the web",
"main": "src/index.js",
"scripts": {
"start": "budo demo/demo.js:bundle.js --title $npm_package_name --force-default-index --open --live --ssl",
"build": "browserify --full-paths demo/demo.js > bundle.js",
"lint": "eslint src",
"test": "mocha --recursive -t 30s",
"coverage": "nyc --reporter=html --reporter=text mocha --recursive -t 30s",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"release": "rm -rf package-lock.json && npm version minor && npm publish",
"patch": "rm -rf package-lock.json && npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum-play/solc-js.git"
},
"keywords": [
"ethereum",
"solidity",
"compiler",
"browser",
"web",
"abi",
"bytecode"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereum/play/issues"
},
"homepage": "https://github.com/ethereum-play/solc-js#readme",
"dependencies": {
"ajax-caching": "^0.1.0",
"kv-idb": "^1.0.0",
"resolve-github": "^0.2.0",
"resolve-http": "^0.2.0",
"resolve-ipfs": "^0.1.0",
"resolve-swarm": "^0.1.0",
"solc-import": "^0.0.2",
"solc-resolver": "^0.2.1",
"solc-version": "^0.1.6",
"solcjs-core": "^0.7.0"
},
"devDependencies": {
"bel": "^6.0.0",
"budo": "^11.3.2",
"chai": "^4.2.0",
"codecov": "^3.2.0",
"cross-fetch": "^2.2.3",
"eslint": "^5.9.0",
"eslint-plugin-mocha": "^5.2.0",
"fake-indexeddb": "^2.0.4",
"mocha": "^5.2.0",
"mock-browser": "^0.92.14",
"nyc": "^13.1.0",
"smartcontract-app": "^2.4.0",
"solcjs-mock": "0.0.1"
}
}