-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
127 lines (127 loc) · 3.23 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "sacoin",
"version": "0.0.0-development",
"description": "An educational JS blockchain aimed at being usable in productions",
"main": "index.js",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"test": "snyk test && jest",
"test:watch": "jest --watch",
"lint:js": "eslint -c ./.eslintrc.js --fix src/*.js tests/*.js",
"doc:lint": "documentation lint src/**",
"doc:html": "documentation build src/** -f html -o doc/",
"doc": "npm run doc:lint && npm run doc:html",
"commit": "git-cz",
"semantic-release": "semantic-release",
"lint:md": "remark . .github -i ./.remarkignore",
"lint": "npm run lint:js && npm run lint:md",
"prepare": "npm run snyk-protect && snyk protect",
"contribs:add": "all-contributors add",
"contribs:generate": "all-contributors generate",
"contribs:check": "all-contributors check",
"fmt": "prettier --config .prettierrc.json --ignore-path .prettierignore --write",
"snyk-protect": "snyk protect"
},
"repository": {
"type": "git",
"url": "https://github.com/Berkmann18/SaCoin.git"
},
"keywords": [
"blockchain",
"cryptocurrency",
"education",
"production",
"javascript",
"nodejs",
"es6"
],
"author": {
"name": "Maximilian Berkmann",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Berkmann18/SaCoin/issues"
},
"homepage": "https://github.com/Berkmann18/SaCoin#readme",
"dependencies": {
"circular-json": "^0.5.9",
"colors": "^1.3.3",
"crypto-js": "^4.0.0",
"jsrsasign": "^10.6.1",
"lodash": "^4.17.21",
"merkletreejs": "^0.2.10",
"nclr": "^2.2.2",
"snyk": "^1.1064.0"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.0",
"all-contributors-cli": "^6.7.0",
"conventional-changelog-eslint": "^3.0.1",
"cz-adapter-eslint": "^0.3.0",
"documentation": "^14.0.0",
"eslint": "^7.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.5.0",
"husky": "^4.0.0",
"jest": "^26.0.0",
"lint-staged": "^10.0.0",
"prettier": "^2.0.3",
"remark-cli": "^11.0.0",
"remark-preset-lint-consistent": "^3.0.0",
"remark-preset-lint-recommended": "^4.0.0",
"semantic-release": "^19.0.3",
"snyk": "^1.1064.0"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/*.js",
"test/*.js",
"!**/node_modules/**",
"!**/_*.js"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 90,
"lines": 50,
"statements": 50
}
},
"testEnvironment": "node"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 9"
],
"engines": {
"node": ">= 7.0.0",
"npm": ">= 4.0.0"
},
"config": {
"commitizen": {
"path": "cz-adapter-eslint"
}
},
"lint-staged": {
"*.js": [
"npm run fmt",
"eslint -c ./.eslintrc.js --fix",
"jest --bail --findRelatedTests",
"git add"
],
"*.md": [
"remark",
"git add"
]
},
"snyk": true
}