-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.04 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
{
"name": "fireblock-ots",
"version": "2.0.0",
"description": "Create OTS for Fireblock.io",
"main": "index.js",
"scripts": {
"test": "export NODE_ENV=testing && mocha --recursive -R spec --exit",
"test:watch": "npm run test -- --watch",
"serve": "npx nodemon server.js",
"create": "node cmd/create.js",
"upgrade": "node cmd/upgrade.js",
"verify": "node cmd/verify.js"
},
"author": "Laurent Mallet <laurent.mallet@gmail.com>",
"license": "GPL3",
"dependencies": {
"redis": "^2.8.0",
"web3": "^1.0.0-beta.52",
"@fireblock.io/fireblocklibjs": "^1.10.17",
"node-schedule": "^1.3.2",
"javascript-opentimestamps": "^0.4.3",
"moment": "^2.24.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.1.4",
"eslint": "^5.16.0",
"babel-eslint": "^10.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-import": "^2.17.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"nodemon": "^1.19.1"
}
}