-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
73 lines (73 loc) · 2.5 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": "@alicenet_/alicenetjs",
"version": "1.0.6-alpha",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.mjs",
"types": "./dist/esm/index.d.ts"
}
},
"scripts": {
"test": "mocha --recursive tests/**/*.js",
"test-unit": "mocha --recursive tests/unit",
"test-integration": "mocha --recursive tests/integration",
"test-single": "mocha",
"test-coverage": "nyc --exclude=src/GoWrappers/** --exclude=**/tests/** --reporter=cobertura --reporter=text npm run test",
"test-unit-coverage": "nyc --exclude=src/GoWrappers/** --exclude=**/tests/** npm run test-unit",
"test-integration-coverage": "nyc --exclude=src/GoWrappers/** --exclude=**/tests/** npm run test-integration",
"build-docs": "jsdoc -c jsdoc.json",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"build": "rollup -c --bundleConfigAsCjs",
"ru-build": "rollup -c --bundleConfigAsCjs",
"ru-dev": "rollup -c -w --bundleConfigAsCjs"
},
"author": "",
"license": "ISC",
"dependencies": {
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-json": "^5.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"axios": "0.26.0",
"ethereum-cryptography": "^1.0.3",
"ethereumjs-util": "7.0.4",
"mad-doc-template": "git+https://github.com/MadBase/mad-doc-template.git",
"rollup": "^3.2.5",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-replace": "^2.2.0",
"secp256k1": "^4.0.3"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@commitlint/format": "^17.0.0",
"assert": "2.0.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"dotenv": "8.4.0",
"eslint": "8.8.0",
"husky": "^8.0.2",
"jsdoc": "3.6.6",
"lint-staged": "^13.1.0",
"mocha": "8.2.1",
"nyc": "15.1.0",
"prettier": "^2.8.1"
},
"files": [
"dist/*"
],
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --cache --fix"
]
}
}