-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 935 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 935 Bytes
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
{
"name": "cryptoexamples-in-javascript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "nyc mocha --timeout 500000 ./test/**/*.test.js"
},
"repository": {
"type": "git",
"url": "https://gilbert.informatik.uni-stuttgart.de/minderki/CryptoExamples-in-JavaScript.git"
},
"author": "",
"license": "ISC",
"devDependencies": {
"chai": "^4.1.2",
"chai-files": "^1.4.0",
"eslint": "^5.9.0",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"sinon": "^6.3.3",
"sinon-chai": "^3.2.0",
"winston": "^3.0.0"
},
"nyc": {
"check-coverage": true,
"per-file": true,
"reporter": [
"lcovonly",
"text"
],
"temp-dir": "./codeanalysis-tmp",
"temp-directory": "./codeanalysis/temp",
"report-dir": "./codeanalysis"
},
"babel": {
"presets": [
"env"
]
},
"dependencies": {
"node-forge": "^0.7.5"
}
}