-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.61 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
{
"name": "@openstfoundation/organization-contracts",
"version": "1.0.0-beta.1",
"description": "Organization contracts manage application permissions",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"compile": "truffle compile",
"compile-all": "truffle compile --all",
"test": "truffle test",
"ganache": "./tools/runGanacheCli.sh",
"build-package": "node tools/build_package.js",
"prepack": "npm run compile-all && npm run generate && npm run build-package && ./node_modules/.bin/tsc ./dist/*.ts",
"lint": "eslint test tools -c .eslintrc.json --ext js",
"generate": "ts-generator ts-generator.json",
"postinstall": "npm run compile-all && npm run generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenST/organization-contracts.git"
},
"keywords": [
"OpenST",
"OST",
"web3",
"Ethereum",
"ACL",
"permissions"
],
"author": "OpenST Foundation Ltd.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/OpenST/organization-contracts/issues"
},
"homepage": "https://openst.org/",
"files": [
"dist"
],
"devDependencies": {
"abi-decoder": "1.2.0",
"assert": "1.4.1",
"bn.js": "4.11.8",
"chai": "4.2.0",
"eslint": "5.10.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.14.0",
"fs-extra": "8.0.1",
"ganache-cli": "6.4.3",
"mocha": "5.2.0",
"openzeppelin-solidity": "2.1.1",
"truffle": "5.0.19",
"ts-generator": "0.0.8",
"typechain": "0.3.14",
"typescript": "3.4.5",
"web3": "1.0.0-beta.36"
}
}