This repository has been archived by the owner on May 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
60 lines (60 loc) · 1.7 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
{
"name": "js-libs",
"description": "A collection of JavaScript libraries for dapp development.",
"author": "Parity Team <[email protected]>",
"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",
"typecheck": "lerna exec yarn typecheck --stream",
"lint-files": "FILES='packages/*/**/*.{ts,tsx}' && ./scripts/lint-files.sh $FILES",
"lint": "yarn lint-files",
"postinstall": "yarn build",
"test": "jest",
"test:api": "cd packages/api && yarn test",
"update-docs": "scripts/update-docs.sh"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"eslint": "^6.3.0",
"eslint-config-semistandard": "^15.0.0",
"eslint-config-standard": "^14.0.0",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"lerna": "^3.4.3",
"prettier": "^1.18.2",
"rimraf": "^2.6.2",
"ts-jest": "^24.0.0",
"typedoc": "^0.14.2",
"typedoc-plugin-markdown": "^1.1.13",
"typescript": "^3.1.6"
},
"resolutions": {
"kind-of": ">=6.0.3"
}
}