forked from rodrigoerazo42/alephium-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "alephium-js",
"version": "1.0.9",
"description": "A JS/TS library to interact with the Alephium platform",
"license": "GPL",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "[email protected]:alephium/alephium-js.git"
},
"homepage": "https://github.com/alephium/alephium-js",
"bugs": {
"url": "https://github.com/alephium/alephium-js/issues"
},
"author": "Alephium dev <[email protected]>",
"files": [
"dist/*"
],
"scripts": {
"compile": "rm -rf dist && npx tsc",
"fetch-schema:alephium": "npx swagger-typescript-api -o ./api -n api-alephium.ts",
"fetch-schema:explorer": "npx swagger-typescript-api -o ./api -n api-explorer.ts",
"dev": "tsnd --respawn lib/index.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --fix --ext .ts",
"jest": "jest --useStderr --silent=false --verbose=true --config jestconfig.json",
"test": "npm run compile && npm run jest",
"test:watch": "npm run compile && npm run jest -- --watch",
"prepublishOnly": "npm run compile"
},
"dependencies": {
"base-x": "^3.0.8",
"bcfg": "~0.1.6",
"bip32": "^2.0.6",
"bip39": "^3.0.4",
"blakejs": "^1.1.1",
"browserify-sha3": "^0.0.5",
"elliptic": "^6.5.4"
},
"devDependencies": {
"@types/elliptic": "^6.4.13",
"@types/jest": "^27.0.1",
"@types/mock-fs": "^4.13.1",
"@types/node": "^16.7.8",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.1.0",
"jest-localstorage-mock": "^2.4.18",
"jest-websocket-mock": "^2.2.1",
"mock-fs": "^5.1.2",
"mock-socket": "^9.0.8",
"prettier": "^2.3.2",
"swagger-typescript-api": "^9.2.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.4.2"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=7.0.0"
}
}