-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.59 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
{
"name": "@lorena-ssi/lorena-crypto",
"version": "0.0.1",
"description": "A javascript library to interact with @polkadotjs/util-crypto",
"main": "src/index.js",
"author": "Alex Puig",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lorena-ssi/lorena-crypto"
},
"keywords": [
"npm",
"node",
"polkadot",
"javascript"
],
"homepage": "https://github.com/lorena-ssi/lorena-crypto#readme",
"dependencies": {
"@babel/core": "^7.11.1",
"@polkadot/keyring": "^3.2.1",
"@polkadot/util": "^3.2.1",
"@polkadot/util-crypto": "^3.2.1",
"js-base64": "^3.4.5"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"eslint": "^7.7.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^30.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"mocha": "^8.1.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0"
},
"scripts": {
"start": "node src/index.js",
"coverage": "nyc npm run mocha && nyc report --reporter=html",
"coveralls": "nyc npm run mocha && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./src",
"lint-fix": "eslint ./src --fix",
"mocha": "mocha test --timeout 20000",
"npm:publish": "npm publish --access public",
"test": "npm run mocha"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
}
}