-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
69 lines (69 loc) · 1.92 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
{
"name": "henesis-wallet-sdk",
"scripts": {
"install:reset": "./scripts/install-reset.sh",
"install:reset-windows": "if exist node_modules rmdir /s /q node_modules",
"lerna:bootstrap": "lerna run preBootstrap && lerna bootstrap --hoist --no-ci",
"bootstrap": "npm run lerna:bootstrap && npm run build",
"bootstrap:windows": "npm run install:reset-windows && lerna run preBootstrap:windows && lerna bootstrap --hoist --no-ci && lerna run build:windows",
"publish:minor": "npm run bootstrap && lerna version minor && lerna publish from-git",
"publish:patch": "npm run bootstrap && lerna version patch && lerna publish from-git",
"publish:prerelease": "npm run bootstrap && lerna version prerelease && lerna publish from-git",
"codegen": "lerna run --scope=\"@haechi-labs/henesis-wallet-core\" codegen",
"build": "lerna run build",
"test": "lerna run test",
"test:integration": "lerna run test:integration",
"precommit": "lerna run prettier && lerna run eslint:fix",
"prepush": "lerna run type-check"
},
"devDependencies": {
"husky": "^4.2.5",
"lerna": "^4.0.0"
},
"author": "Haechi labs Team",
"license": "LGPL3",
"workspaces": {
"packages": [
"packages/*"
]
},
"lint-staged": {
"**/*.js": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit",
"pre-push": "npm run prepush"
}
},
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"printWidth": 80
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.(integration|spec)\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"globals": {
"ts-jest": {
"diagnostics": true
}
}
},
"dependencies": {
"axios": "^0.21.1",
"concurrently": "^5.2.0",
"root-require": "^0.3.1"
},
"version": "2.10.4"
}