This repository was archived by the owner on Jul 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.17 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.17 KB
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
{
"name": "polymathjs",
"version": "1.6.0",
"repository": {
"type": "git",
"url": "git+https://github.com/PolymathNetwork/polymath.js.git"
},
"keywords": [
"smart",
"contracts",
"solidity",
"token",
"securityToken",
"ERC20",
"ST20"
],
"author": "Polymath Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/PolymathNetwork/polymath.js/issues"
},
"homepage": "https://github.com/PolymathNetwork/polymath.js#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "7.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-async-functions": "^6.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-regenerator": "^6.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.0.15",
"eslint": "4.11.0",
"eslint-plugin-polymath": "github:PolymathNetwork/eslint-plugin-polymath#3.0.0",
"flow-bin": "^0.68.0",
"husky": "0.14.3",
"lint-staged": "5.0.0",
"npm-run-all": "4.0.2"
},
"dependencies": {
"bignumber.js": "5.0.0",
"bs58": "^4.0.1",
"polymath-core": "1.4.0",
"redux": "3.7.2",
"redux-thunk": "2.2.0",
"web3": "1.0.0-beta.30",
"web3-core-method": "bshevchenko/web3-core-method#master",
"web3-eth-contract": "1.0.0-beta.30"
},
"main": "./dist/index.js",
"scripts": {
"start-lint": "esw -w --fix src",
"lint": "eslint --fix src",
"typecheck": "flow",
"precommit": "lint-staged && npm run typecheck",
"ganache-cli": "ganache-cli --gasLimit 90000000",
"contracts": "cd node_modules/polymath-core && yarn && node node_modules/truffle/build/cli.bundled.js migrate --reset --all --network development",
"tconsole": "cd node_modules/polymath-core && yarn && node node_modules/truffle/build/cli.bundled.js console",
"build": "babel src --out-dir dist",
"prepublish": "npm run build"
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add"
]
}
}