-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.49 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
{
"name": "@psychedelic/icns-js",
"version": "0.1.10",
"description": "icns-js is a library for interacting with ICNS canisters",
"main": "dist/index.js",
"repository": "https://github.com/Psychedelic/icns-js.git",
"author": "ICNS Team",
"license": "GLP-3.0",
"devDependencies": {
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"js-sha256": "^0.9.0",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-patch": "^2.0.1",
"typedoc": "^0.22.11",
"typedoc-plugin-markdown": "^3.11.14",
"typescript": "^4.5.5",
"typescript-transform-paths": "^3.3.1"
},
"scripts": {
"prepare": "ts-patch install -s",
"build": "tsc --project tsconfig.build.json",
"test": "jest --watch",
"test:ci": "jest --silent",
"test:coverage": "jest --coverage",
"docs": "npx typedoc --readme none --disableSources --sort static-first --sort alphabetical --plugin typedoc-plugin-markdown --hideBreadcrumbs --out docs src/index.ts --excludeInternal"
},
"jest": {
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!lodash-es)"
]
},
"dependencies": {
"@dfinity/agent": "^0.10.2",
"@dfinity/candid": "^0.10.2",
"@dfinity/principal": "^0.10.2",
"bignumber.js": "^9.0.2",
"cross-fetch": "^3.1.5"
}
}