-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"private": true,
"name": "harmony-utils",
"description": "Common wrappers and wallet implementations for Harmony dApps",
"keywords": [
"harmony",
"dapp",
"utils",
"wrappers",
"wallets"
],
"author": "Harmony <hello@harmony.one>",
"repository": {
"type": "git",
"url": "git://github.com/harmony-one/harmony-utils.git"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"publish:lerna": "lerna publish",
"clean": "lerna clean --yes && lerna exec -- rimraf yarn.lock dist/ .rts2_cache_{cjs,esm}/",
"build": "lerna run build",
"start": "lerna run --parallel --no-bail start -- --noClean",
"lint": "lerna run lint --parallel",
"lint:fix": "lerna run lint --parallel -- --fix",
"test": "lerna run test --parallel"
},
"devDependencies": {
"@types/jest": "^24.0.21",
"lerna": "^3.19.0",
"rimraf": "^3.0.1",
"tsdx": "^0.11.0"
},
"license": "GPL-3.0-or-later",
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 120
}
}