-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 865 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 865 Bytes
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
{
"name": "eth-sdk",
"private": true,
"version": "0.0.0",
"description": "Eth sdk",
"author": {
"name": "Stanislaw Glogowski",
"email": "hello@newobject.pl"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/abridged/eth-sdk.git"
},
"bugs": {
"url": "https://github.com/abridged/eth-sdk/issues"
},
"scripts": {
"lint": "lerna run --stream lint",
"bootstrap": "lerna bootstrap -- --no-package-lock",
"prebuild": "npm run bootstrap",
"build": "lerna run --stream build",
"precompile-watch": "npm run build",
"compile-watch": "lerna run --parallel compile-watch",
"test": "lerna run --stream test",
"publish": "npm run build && lerna version --no-push && lerna exec --stream --no-private --no-bail npm publish"
},
"dependencies": {
"lerna": "3.18.4"
}
}