This repository was archived by the owner on Sep 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.35 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.35 KB
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
{
"name": "ampleforth-wrapper",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/EthWorks/ampleforth-wrapper.git",
"author": "rzadp <przemek@ethworks.io>",
"license": "MIT",
"private": true,
"scripts": {
"clean": "rm -rf build dist",
"build:contracts": "yarn waffle .waffle.json && yarn waffle .waffle.ampleforth.json",
"build:types": "typechain --target ethers --outDir build/contract-types 'build/**/*.json' && tsc",
"build": "rm -rf build && yarn build:contracts && yarn build:types",
"test": "mocha",
"lint:ts": "eslint '{src,test}/**/*.{js,ts}'",
"lint:contracts": "solium -d src/contracts",
"lint": "yarn lint:ts && yarn lint:contracts"
},
"dependencies": {
"ethers": "4.0.45",
"uFragments": "ampleforth/uFragments#394792f181473a75a77d0d6d2a1a4177673516e8"
},
"devDependencies": {
"@resolver-engine/core": "0.3.3",
"@types/chai": "^4.2.10",
"@types/mocha": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.18.2",
"ethereum-waffle": "2.2.0",
"ethlint": "1.2.5",
"mocha": "^7.1.0",
"ts-node": "^8.6.2",
"typechain": "1.0.3",
"typechain-target-ethers": "1.0.3",
"typescript": "3.7.3",
"zos-lib": "2.2.2"
}
}