-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.53 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
{
"name": "fletch-verihash",
"version": "0.1.0",
"description": "Store record of your secrets securely on the blockchain.",
"main": "./out/src/index.js",
"types": "./out/src/index.d.ts",
"files": [
"out"
],
"scripts": {
"build": "tsc --build",
"build-web": "webpack --config webpack.prod.js",
"prepublish": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "standard --fix src/**/*.js",
"doc": "documentation readme src/VeriHash.ts -f md -s API -a public"
},
"author": "Fletch Industries LLC",
"license": "Open BSV License",
"dependencies": {
"@babbage/sdk": "^0.4.25",
"babbage-bsv": "^0.2.0",
"babbage-kvstore": "^1.1.10",
"documentation": "^14.0.2",
"pushdrop": "^0.1.20"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"babel-loader": "^8.2.5",
"eslint": "^8.34.0",
"jest": "^29.4.3",
"mock-knex": "^0.4.11",
"node-polyfill-webpack-plugin": "^2.0.1",
"nodemon": "^2.0.4",
"standard": "^17.1.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"ts-standard": "^12.0.2",
"typescript": "^4.9.5",
"url-loader": "^4.1.1",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2",
"webpack-merge": "^5.8.0"
}
}