This repository has been archived by the owner on Feb 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
68 lines (68 loc) · 2.24 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
{
"name": "purser",
"private": true,
"version": "3.2.0",
"description": "Interact with Ethereum wallets easily",
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"build-docs": "typedoc packages/@purser/core/src/index.ts packages/@purser/metamask/src/index.ts packages/@purser/software/src/index.ts packages/@purser/signer-ethers/src/index.ts",
"test": "npm run lint && npm run typecheck && jest",
"lint": "lerna run lint",
"lint:fix": "lerna run lint -- -- --fix",
"publish": "npm run test && npm run build && lerna publish",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoinColony/purser.git"
},
"author": "Raul Glogovetan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JoinColony/purser/issues"
},
"homepage": "https://github.com/JoinColony/purser",
"keywords": [
"ethereum",
"javascript",
"wallet",
"colony",
"software-wallet",
"monorepo",
"purser"
],
"devDependencies": {
"@colony/eslint-config-colony": "8.0.1",
"@strictsoftware/typedoc-plugin-monorepo": "^0.3.1",
"@types/bn.js": "^4.11.6",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"camelcase": "5.3.1",
"chalk": "3.0.0",
"chokidar": "3.3.1",
"cross-env": "^6.0.3",
"denodeify": "1.2.1",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-eslint-comments": "3.1.2",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jest": "^23.9.0",
"eslint-plugin-prettier": "3.1.3",
"find-imports": "1.1.0",
"fs-extra": "8.1.0",
"husky": "4.2.3",
"jest": "25.1.0",
"jest-sandbox": "1.1.2",
"lerna": "^3.20.2",
"lint-staged": "10.0.8",
"prettier": "2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^25.3.1",
"typedoc": "^0.17.0-3",
"typescript": "^3.8.3"
},
"dependencies": {}
}