This repository has been archived by the owner on Mar 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.78 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
{
"name": "NonFungibleToken",
"version": "0.0.1",
"description": "A generic implementation of the ERC721 Standard for non-fungible tokens",
"scripts": {
"generate-typings": "abi-gen --abiGlob './build/contracts/*.json' --templates ./types/contract_templates --output ./types/generated",
"transpile": "rm -rf ./transpiled; copyfiles ./build/**/* ./transpiled; tsc",
"lint-ts": "tslint migrations/*.ts test/**/*.ts",
"lint-sol": "solhint contracts/*.sol contracts/**/*.sol",
"lint": "npm run lint-ts; npm run lint-sol",
"compile": "rm -rf build/contracts; truffle compile --all",
"migrate": "npm run compile; npm run generate-typings; npm run transpile; truffle migrate",
"make": "npm run compile; npm run generate-typings; npm run transpile;",
"test": "npm run compile; npm run generate-typings; npm run transpile; truffle test",
"testrpc": "ganache-cli --networkId 50"
},
"repository": "[email protected]:dharmaprotocol/NonFungibleToken.git",
"author": "Nadav Hollander <[email protected]>",
"license": "MIT",
"pre-commit": [
"lint"
],
"dependencies": {
"zeppelin-solidity": "^1.4.0"
},
"devDependencies": {
"@0xproject/abi-gen": "^0.0.2",
"@0xproject/types": "^0.1.0",
"@0xproject/utils": "^0.1.0",
"@types/bignumber.js": "^4.0.3",
"@types/chai": "^4.0.5",
"@types/chai-as-promised": "^7.1.0",
"@types/lodash": "^4.14.88",
"@types/node": "^8.5.1",
"abi-decoder": "^1.0.9",
"bignumber.js": "^4.1.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"copyfiles": "^1.2.0",
"ganache-cli": "^6.0.3",
"solhint": "^1.1.9",
"truffle": "4.0.3",
"tslint": "^5.8.0",
"typescript": "^2.6.1",
"web3": "0.19.0",
"web3-typescript-typings": "^0.7.2"
}
}