-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 2.87 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "ERC1400",
"version": "0.1.0-dev",
"description": "Codefi Asset's ERC1400 implementation",
"files": [
"contracts",
"tests"
],
"scripts": {
"build:ERC1400": "sol-merger \"./contracts/ERC1400.sol\" ./artifacts",
"build:ERC1400TokensValidator": "sol-merger \"./contracts/extensions/tokenExtensions/ERC1400TokensValidator.sol\" ./artifacts",
"build": "yarn run clean && yarn run build:ERC1400 && yarn run build:ERC1400TokensValidator",
"clean": "rm -rf artifacts",
"coverage": "yarn truffle run coverage",
"env": "node setup.js",
"lint": "eslint ./migrations ./test ",
"lint:fix": "eslint ./test ./migrations --fix",
"lint:sol": "solium -d .",
"lint:sol:fix": "solium -d . --fix",
"lint:all": "yarn run lint && yarn run lint:sol",
"lint:all:fix": "yarn run lint:fix && yarn run lint:sol:fix",
"console": "truffle console",
"truffle": "truffle",
"version": "scripts/version.js",
"remix": "python -mwebbrowser http://localhost:8080 && ./node_modules/remix-ide/bin/remix-ide"
},
"repository": {
"type": "git",
"url": "https://github.com/ConsenSys/ERC1400"
},
"keywords": [
"boilerplate",
"solidity",
"ethereum",
"smart",
"contracts",
"security",
"ERC1820",
"ERC777",
"ERC1410",
"ERC1400"
],
"author": "Gauthier Petetin <[email protected]>",
"contributors": [
"Julien Marchand <[email protected]>"
],
"license": "Apache",
"devDependencies": {
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"babel-register": "^6.23.0",
"chai": "^4.0.2",
"chai-as-promised": "^7.0.0",
"chai-bignumber": "^2.0.0",
"dotenv": "^4.0.0",
"eslint": "^4.11.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"ethereumjs-testrpc-sc": "6.1.6",
"ethereumjs-util": "^5.1.2",
"fs-extra": "^7.0.1",
"ganache-cli": "^6.4.0",
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"openzeppelin-test-helpers": "^0.1.5",
"remix-ide": "^0.7.4",
"sol-merger": "0.1.4",
"solidity-coverage": "0.7.0-beta.3",
"solium": "^1.1.8",
"solium-plugin-zeppelin": "^0.0.2"
},
"dependencies": {
"coverage": "^0.4.1",
"erc1820": "git+https://github.com/0xjac/ERC1820#885549fe3e9f0fd22444f78532be3dce4ee8a5e2",
"ethereumjs-wallet": "^0.6.3",
"openzeppelin-solidity": "2.1.3",
"truffle": "5.0.1",
"truffle-hdwallet-provider": "1.0.1"
},
"husky": {
"hooks": {
"pre-push": "truffle test"
}
},
"lint-staged": {
"*.js": [
"eslint ./test ./migrations --fix",
"git add"
],
"*.sol": [
"solium -d . --fix",
"git add"
]
}
}