-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.15 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
{
"private": true,
"name": "@vadymus/ark-hyperledger-plugin",
"description": "Provides my func for ARK Core",
"version": "0.0.1",
"contributors": [
"Vadym Ustymenko <[email protected]>"
],
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"build:docs": "../../node_modules/.bin/jsdoc -c jsdoc.json",
"test": "ARK_ENV=test jest --forceExit",
"test:coverage": "ARK_ENV=test jest --coverage --forceExit",
"test:debug": "ARK_ENV=test node --inspect-brk ../../node_modules/.bin/jest --runInBand --watch",
"test:watch": "ARK_ENV=test jest --runInBand --watch",
"test:watch:all": "ARK_ENV=test jest --runInBand --watchAll",
"lint": "eslint ./ --fix",
"depcheck": "depcheck ./"
},
"devDependencies": {
"depcheck": "^0.6.9",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"jest": "^23.1.0",
"jest-extended": "^0.7.2",
"jsdoc": "^3.5.5",
"regenerator-runtime": "^0.11.1",
"standard": "^11.0.1",
"nodemailer": "4.6.8"
}
}