-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 775 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 775 Bytes
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
{
"name": "ethereum-ocm",
"version": "0.1.5",
"description": "Solidity object contract mapping (OCM)",
"main": "index.js",
"scripts": {
"compile": "rm -rf lib/* && ./node_modules/.bin/babel src -d lib",
"prepublish": "npm run compile"
},
"author": "Vitiko <vitiko@mail.ru>",
"repository": {
"type": "git",
"url": "https://github.com/vitiko/ethereum-ocm.git"
},
"license": "ISC",
"dependencies": {
"babel-cli": "^6.22.2",
"babel-polyfill": "^6.0.16",
"solidity-structure": "^0.1.9",
"source-map-support": "^0.4.11",
"truffle-contract": "^1.1.10",
"web3": "^0.18.4"
},
"devDependencies": {
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"babel-preset-stage-3": "^6.22.0"
}
}