-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 2.62 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
{
"name": "@reflexer-finance/geb",
"version": "0.0.0",
"description": "Javascript client for GEB reflex indexes",
"main": "index.js",
"scripts": {
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap --hoist",
"publish": "lerna publish",
"build": "tsc --build ./tsconfig.project.json",
"clean": "tsc --build --clean ./tsconfig.project.json",
"add-package": "node ./scripts/add_package.js",
"prettier": "prettier --write \"{,**/*.{ts,json,js,md}}\"",
"api-codegen": "npm run codegen --prefix packages/geb-contract-api && npm run codegen --prefix packages/geb-admin-api && prettier --write packages/*/*/*.json packages/*/src/generated/*.ts && git apply packages/geb-contract-api/src/patches/*.patch",
"abi-codegen": "node ./scripts/load_abis.js && prettier --write packages/geb-contract-api/*/*.json packages/geb-contract-api/src/generated/*.ts",
"test-node": "mocha --timeout 8000 ./packages/geb-test/lib/*/*.js --grep",
"test": "npm run test-node",
"test-all": "npm run clean && npm run build && npm run bootstrap && npm run test-node Test",
"dev": "npm run clean && npm run build && npm run bootstrap",
"docs": "rm -rf docs && typedoc --options typedoc.json && node scripts/process_docs.js",
"docs-publish": "npm run docs && git clone git@github.com:reflexer-labs/geb-docs.git && cp -r docs/* geb-docs/geb-js && cd geb-docs && git add -A && git commit -m'Update geb.js docs...' && git push && cd .. && rm -rf geb-docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reflexer-labs/geb.js.git"
},
"keywords": [
"rai",
"geb",
"blockchain",
"ethereum",
"flx",
"reflexer",
"labs"
],
"author": "Guillaume Felley <guillaume@reflexer.finance>",
"license": "MIT",
"bugs": {
"url": "https://github.com/reflexer-labs/geb.js/issues"
},
"homepage": "https://github.com/reflexer-labs/geb.js#readme",
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.0",
"husky": "^4.2.5",
"lerna": "^3.22.1",
"lint-staged": "^10.2.13",
"mocha": "^8.1.2",
"prettier": "^2.1.1",
"typescript": "^4.0.2",
"solc": "^0.6.7",
"typedoc": "^0.19.1",
"typedoc-plugin-markdown": "^2.4.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,md,json,ts}": "prettier --write"
},
"dependencies": {
"axios": "^0.21.1"
}
}