forked from openethereum/js-libs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.1 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.1 KB
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
{
"name": "js-libs",
"description": "A collection of JavaScript libraries for dapp development.",
"author": "Parity Team <admin@parity.io>",
"maintainers": [
"Amaury Martiny"
],
"license": "MIT",
"private": true,
"repository": "https://github.com/paritytech/js-libs",
"homepage": "https://github.com/paritytech/js-libs",
"bugs": {
"url": "https://github.com/paritytech/js-libs/issues"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"engines": {
"node": ">=10.10.0",
"yarn": "^1.4.2"
},
"scripts": {
"build": "lerna exec yarn build --stream",
"lint": "tslint 'packages/**/*.ts'",
"postinstall": "yarn build",
"test": "jest",
"test:api": "cd packages/api && yarn test",
"update-docs": "scripts/update-docs.sh"
},
"devDependencies": {
"@types/jest": "^24.0.9",
"jest": "^24.1.0",
"lerna": "^3.4.3",
"rimraf": "^2.6.2",
"ts-jest": "^24.0.0",
"tslint": "^5.10.0",
"tslint-config-semistandard": "^7.0.0",
"typedoc": "^0.14.2",
"typedoc-plugin-markdown": "^1.1.13",
"typescript": "^3.1.6"
}
}