forked from dfinity/agent-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.14 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
69
70
71
72
73
{
"name": "@dfinity/agent-monorepo",
"version": "0.10.2",
"private": true,
"description": "Use an Agent to interact with the Internet Computer from your JavaScript program.",
"dependencies": {
"@types/jest": "^26.0.22",
"jest": "^27.3.1",
"jest-cli": "^27.3.1",
"ts-jest": "^27.0.7"
},
"workspaces": {
"packages": [
"packages/principal",
"packages/candid",
"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",
"husky": "^6.0.0",
"jest-environment-node": "^27.0.6",
"jest-expect-message": "^1.0.2",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0",
"ts-node": "^9.1.1",
"typedoc": "^0.20.32",
"typescript": "^3.6.3",
"yargs": "^15.4.1"
},
"engines": {
"node": "^12 || ^14 || ^16",
"npm": "^7.17"
},
"scripts": {
"lint:e2e": "eslint --cache --cache-location node_modules/.cache/eslint 'e2e/*/**/*.ts*'",
"publish:release": "npm run publish --workspaces",
"build": "",
"lint:fix": "",
"make:docs": "npm run make:docs/reference --workspaces --if-present; ",
"test:coverage": "",
"test": "jest",
"prepare": "husky install",
"prettier:check": "npx -p prettier -p pretty-quick pretty-quick --check",
"prettier:format": "npx -p prettier -p pretty-quick pretty-quick",
"version": "ts-node bin/version.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dfinity-lab/agent-js.git"
},
"author": "DFINITY Stiftung <sdk@dfinity.org>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dfinity-lab/agent-js/issues"
},
"homepage": "https://github.com/dfinity-lab/agent-js#readme"
}