forked from CirclesUBI/circles-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.16 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
{
"name": "@circles/core",
"version": "4.9.1",
"description": "Common methods to interact with the Circles ecosystem",
"main": "lib/index.js",
"contributors": [
"adzialocha",
"llunaCreixent",
"ana0",
"louilinn",
"JacqueGM",
"mikozet"
],
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git://github.com/CirclesUBI/circles-core.git"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"prepare": "husky install",
"build": "npm run clear && rollup -c --bundleConfigAsCjs",
"clear": "rimraf ./lib",
"docs:build": "documentation build ./src/** -f html -o docs",
"docs:serve": "documentation serve --watch ./src/**",
"docs:lint": "documentation lint ./src/**",
"lint": "eslint --ignore-path .gitignore --ignore-pattern lib .",
"test": "jest --runInBand",
"test:watch": "npm run test -- --watch"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.15",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-module-resolver": "^5.0.0",
"documentation": "^14.0.2",
"dotenv": "^16.3.1",
"eslint": "^8.51.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"http-status": "^1.7.0",
"husky": "^8.0.3",
"isomorphic-fetch": "^3.0.0",
"jest": "^29.7.0",
"lint-staged": "^13.3.0",
"nock": "^13.3.4",
"prettier": "^2.8.8",
"rimraf": "^5.0.5",
"rollup": "^3.29.4",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-node-builtins": "^2.1.2",
"truffle": "^5.11.5",
"web3": "^1.10.2"
},
"dependencies": {
"@circles/circles-contracts": "^3.3.2",
"@circles/safe-contracts": "=1.0.14",
"@gnosis.pm/safe-contracts": "^1.3.0",
"eth-lib": "^0.2.8"
}
}