-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "root",
"version": "1.0.0",
"description": "Monorepo for Linkdrop Safe Module",
"main": "index.js",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/truffle",
"**/truffle/**"
]
},
"scripts": {
"compile": "cd packages/contracts && npx waffle",
"test": "cd packages/contracts && mocha --require @babel/polyfill --require @babel/register",
"server": "cd packages/relayer && yarn start",
"deploy-module": "npx babel-node packages/scripts/deployModule",
"generate-and-claim-link": "npx babel-node packages/scripts/generateAndClaimLink"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LinkdropProtocol/linkdrop-safe-module.git"
},
"bugs": {
"url": "https://github.com/LinkdropProtocol/linkdrop-safe-module/issues"
},
"keywords": [
"ethereum",
"linkdrop",
"gnosis",
"safe",
"wallet"
],
"devDependencies": {
"lerna": "^3.16.4",
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0"
},
"standard": {
"parser": "babel-eslint"
}
}