forked from dfinity/agent-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 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
61
62
63
{
"name": "@dfinity/agent-monorepo",
"version": "0.0.0",
"private": true,
"description": "Use an Agent to interact with the Internet Computer from your JavaScript program.",
"dependencies": {
"@types/jest": "^26.0.22",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"ts-jest": "^26.5.4"
},
"workspaces": {
"packages": [
"packages/agent",
"packages/identity",
"packages/identity-ledgerhq",
"packages/authentication",
"packages/auth-client",
"apps/sw-cert",
"e2e/node",
"demos/ledgerhq",
"demos/sample-javascript"
]
},
"devDependencies": {
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@jest/types": "^26.6.2",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"eslint-plugin-jsdoc": "^31.6.0",
"jest-expect-message": "^1.0.2",
"lerna": "^4.0.0",
"ts-node": "^9.1.1",
"typedoc": "^0.20.32",
"typescript": "^3.6.3"
},
"engines": {
"node": "^12 || ^14",
"npm": "^7"
},
"scripts": {
"lint:e2e": "eslint --cache --cache-location node_modules/.cache/eslint 'e2e/*/**/*.ts*'",
"publish:release": "npm run publish --workspaces",
"build": "",
"lint:fix": "",
"make:docs/reference": "",
"test:coverage": "",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dfinity-lab/agent-js.git"
},
"author": "DFINITY Stiftung <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dfinity-lab/agent-js/issues"
},
"homepage": "https://github.com/dfinity-lab/agent-js#readme"
}