123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- {
- "name": "erc20-tokens",
- "version": "0.0.1",
- "description": "Ethereum Token Contracts",
- "main": "truffle.js",
- "directories": {
- "test": "test"
- },
- "scripts": {
- "compile": "truffle compile",
- "fix:js": "eslint --fix test/** migrations/**",
- "lint:js": "eslint test/** migrations/**",
- "lint:sol": "solhint contracts/*.sol contracts/*/*.sol test/*.sol test/*/*.sol",
- "lint": "npm run lint:js && npm run lint:sol",
- "publish": "truffle publish",
- "pretest": "npm run lint",
- "test": "truffle test",
- "coverage": "solidity-coverage",
- "coveralls": ""
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/ConsenSys/Tokens.git"
- },
- "keywords": [
- "ethereum"
- ],
- "authors": [
- "Simon de la Rouviere <simon.delarouviere@consensys.net>",
- "Joseph Chow <joseph.chow@consensys.net>"
- ],
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/ConsenSys/Tokens/issues"
- },
- "homepage": "https://github.com/ConsenSys/Tokens#readme",
- "dependencies": {
- "truffle": "4.0.6",
- "truffle-hdwallet-provider": "0.0.3"
- },
- "devDependencies": {
- "coveralls": "3.0.0",
- "eslint": "4.13.1",
- "eslint-config-airbnb": "16.1.0",
- "eslint-plugin-import": "2.8.0",
- "eslint-plugin-jsx-a11y": "6.0.3",
- "eslint-plugin-mocha": "4.11.0",
- "eslint-plugin-node": "5.1.0",
- "eslint-plugin-react": "7.5.1",
- "solhint": "1.1.9",
- "solidity-coverage": "0.4.9"
- }
- }
|