forked from aion-dk/js-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.01 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
{
"name": "@aion-dk/js-client",
"version": "2.1.8",
"license": "MIT",
"description": "Assembly Voting JS client",
"main": "dist/lib/av_client.js",
"types": "dist/lib/av_client.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/aion-dk/js-client.git"
},
"homepage": "https://aion-dk.github.io/js-client/",
"scripts": {
"test": "mocha --require ts-node/register/transpile-only --require source-map-support/register --recursive --extension ts ./test/*.test.ts ./test/**/*.test.ts",
"test:walkthrough": "mocha --require ts-node/register/transpile-only --require source-map-support/register --recursive --extension ts ./test/walkthrough.test.ts",
"coverage": "tsc && nyc --reporter=json-summary --reporter=text yarn test",
"tdd": "mocha --require ts-node/register/transpile-only --require source-map-support/register --extension ts ./test/**/*.test.ts --watch --watch-files test/**/*.ts,lib/**/*.ts",
"docs": "typedoc --plugin none --out docs --includes test/",
"build": "tsc && cp lib/av_client/*.js dist/lib/av_client",
"lint": "eslint lib/ test/",
"webpack": "webpack --config webpack.config.js"
},
"files": [
"dist/lib/**/*"
],
"engines": {
"node": ">=14"
},
"dependencies": {
"axios": "^0.25.0",
"base-x": "^4.0.0",
"buffer": "^6.0.3",
"jose": "^4.6.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.9",
"@types/sjcl": "^1.0.30",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"chai": "^4.3.4",
"dotenv": "^16.0.0",
"eslint": "^8.7.0",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^9.1.3",
"nock": "^13.1.3",
"nyc": "^15.1.0",
"sinon": "^12.0.1",
"source-map-support": "^0.5.20",
"ts-node": "^10.4.0",
"typedoc": "^0.22.4",
"typescript": "^4.5.4",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
}
}