This repository has been archived by the owner on Nov 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
78 lines (78 loc) · 2.32 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
{
"name": "@openzeppelin/test-environment",
"version": "0.1.9",
"description": "One-line setup for an awesome testing experience.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"compile": "rm -rf lib && tsc",
"docs": "oz-docs -c docs",
"docs:watch": "npm run docs watch",
"prepare": "npm run compile",
"test:integration": "node scripts/run-integration-test.js",
"test:unit": "jest --verbose",
"test": "npm run test:unit && npm run test:integration",
"watch": "tsc -w",
"lint": "yarn lint:check --fix",
"lint:check": "npx eslint 'src/**/*.{js,ts}' --quiet"
},
"files": [
"lib",
"!*.test.js",
"!*.test.js.map",
"!*.test.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/OpenZeppelin/openzeppelin-test-environment.git"
},
"keywords": [
"smart-contracts",
"solidity",
"ethereum",
"test",
"javascript",
"web3",
"test"
],
"author": "Francisco Giordano <[email protected]>, Nicolás Venturo <[email protected]>, Igor Yalovoy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/OpenZeppelin/openzeppelin-test-environment/issues"
},
"homepage": "https://github.com/OpenZeppelin/openzeppelin-test-environment#readme",
"devDependencies": {
"@openzeppelin/docs-utils": "^0.1.0",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^24.0.23",
"@types/lodash.merge": "^4.6.6",
"@types/node": "^12.12.7",
"@types/semver": "^7.1.0",
"@typescript-eslint/eslint-plugin": "^2.1.0",
"@typescript-eslint/parser": "^2.1.0",
"code-style": "git+https://github.com/OpenZeppelin/code-style.git",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-prettier": "^3.1.0",
"ethereumjs-util": "^6.2.0",
"jest": "^25.2.4",
"prettier": "^2.0.4",
"ts-jest": "^25.3.0",
"typescript": "^3.6.2"
},
"dependencies": {
"@openzeppelin/contract-loader": "^0.6.1",
"@truffle/contract": "^4.0.38",
"ansi-colors": "^4.1.1",
"ethereumjs-wallet": "^0.6.3",
"exit-hook": "^2.2.0",
"find-up": "^4.1.0",
"fs-extra": "^9.0.1",
"ganache-core": "^2.11.2",
"lodash.merge": "^4.6.2",
"p-queue": "^6.2.0",
"semver": "^7.1.3",
"try-require": "^1.2.1",
"web3": "^1.3.0"
}
}