-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.98 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
{
"name": "aloxide",
"description": "While there are a lot of blockchain softwares available and it's not uncommon to see a requirement to support various blockchains, it still requires a significant amount of time to learn how to write a smart contract just printing \"Hello World\" per blockchain. Aloxide provides a pragmatic abstraction for various blockchain softwares including CAN, EOS, ICON, and so on so that you can focus on business logic on smart contracts without ties to specific blockchain natures. Also based on the abstraction Aloxide offers useful tool-kits for dApp development such as API gateway and SDK.",
"author": "Lecle",
"license": "Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/lecle/aloxide.git"
},
"bugs": {
"url": "https://github.com/lecle/aloxide/issues"
},
"homepage": "https://github.com/lecle/aloxide#readme",
"workspaces": [
"packages/*"
],
"scripts": {
"start": "lerna run start",
"docs": "doctoc --title '**Table of content**' README.md",
"clean": "lerna run clean",
"lint": "lerna run lint",
"build": "lerna run build",
"pub": "lerna publish",
"test": "jest --config ./jest-cov.config.js",
"test:coverage": "yarn test --coverage"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,md,css,scss,yaml,yml}": [
"prettier --write",
"git add"
],
"*.ts": [
"tslint --fix"
],
"*.md": [
"doctoc --title '**Table of content**'"
]
},
"devDependencies": {
"@types/jest": "^26.0.5",
"@types/node": "^14.0.24",
"@types/node-fetch": "^2.5.7",
"doctoc": "^1.4.0",
"husky": "^4.3.0",
"jest": "26.4.2",
"lerna": "^3.22.1",
"lint-staged": "^10.4.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "26.4.0",
"ts-node": "^9.0.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.7"
}
}