-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1019 Bytes
/
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
{
"name": "blockchain.js",
"version": "1.0.0",
"description": "Simple blockchain implemented in javascript",
"main": "index.js",
"scripts": {
"test": "jest",
"coveralls": "cat coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"keywords": [
"blockchain",
"javascript",
"node"
],
"jest": {
"testPathIgnorePatterns": [
"/node_modules/"
],
"coverageDirectory": "./coverage",
"collectCoverage": true
},
"author": "Zvonimir Susac <susac.zvonimir@gmail.com>",
"license": "MIT",
"devDependencies": {
"body-parser": "^1.18.2",
"connect": "^3.6.5",
"coveralls": "^2.13.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"express": "^4.16.1",
"jest": "^21.2.0",
"jsonfile": "^4.0.0",
"request": "^2.83.0",
"yargs": "^9.0.1"
},
"dependencies": {
"sha.js": "^2.4.9"
}
}