-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "ic-test-env",
"version": "0.1.0",
"description": "BigMap Command Line Interface",
"main": "index.js",
"scripts": {
"test": "jest"
},
"dependencies": {
"@dfinity/agent": "^0.10.1",
"@dfinity/authentication": "^0.10.1",
"@dfinity/candid": "^0.10.1",
"@dfinity/identity": "^0.10.1",
"@dfinity/principal": "^0.10.1",
"@types/shelljs": "^0.8.9",
"agent-js": "^1.0.0",
"btoa": "^1.2.1",
"commander": "^8.3.0",
"crc": "^3.8.0",
"js-sha256": "^0.9.0",
"node-webcrypto-ossl": "^2.1.1",
"protobufjs": "^6.11.2",
"shelljs": "^0.8.4"
},
"devDependencies": {
"@types/node": "^16.11.11",
"@types/yargs": "^17.0.8",
"jest": "^26.4.2",
"node-fetch": "^2.6.1",
"ts-jest": "^26.3.0",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.5.2"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
}
}