This repository has been archived by the owner on Apr 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
75 lines (75 loc) · 1.91 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
{
"name": "@openzeppelin/solidity-loader",
"version": "1.5.1",
"description": "Webpack Solidity Hot Loader",
"main": "index.js",
"scripts": {
"docs": "oz-docs",
"docs:watch": "npm run docs watch",
"pre-commit": "lint-staged",
"pre-push": "npm run test",
"test": "jest --runInBand --detectOpenHandles"
},
"husky": {
"hooks": {
"pre-push": "npm run pre-push",
"pre-commit": "npm run pre-commit"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenZeppelin/solidity-loader.git"
},
"keywords": [
"openzeppelin",
"openzeppelin-sdk",
"solidity",
"ethereum",
"smart-contracts",
"solidity-loader"
],
"author": "Igor Yalovoy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/OpenZeppelin/solidity-loader/issues"
},
"homepage": "https://github.com/OpenZeppelin/solidity-loader#readme",
"dependencies": {
"array-flatten": "^2.1.2",
"find-up": "^3.0.0",
"fs-extra": "^8.0.1",
"loader-utils": "^1.2.3",
"path-is-inside": "^1.0.2",
"truffle-config": "^1.1.19",
"which": "^1.3.1"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@openzeppelin/upgrades": "^2.6.0",
"babel-jest": "^24.1.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.14.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.1.1",
"graceful-fs": "^4.2.3",
"husky": "^3.0.5",
"jest": "^24.8.0",
"json-loader": "^0.5.7",
"lint-staged": "^9.4.0",
"memory-fs": "^0.4.1",
"openzeppelin-docs-utils": "github:OpenZeppelin/docs-utils",
"prettier": "^1.18.2",
"require-from-string": "^2.0.2",
"webpack": "^4.29.5"
}
}