-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.21 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.21 KB
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
{
"name": "cryptography",
"version": "1.0.0",
"description": "My journey learning cryptography",
"main": "crypto.js",
"nyc": {
"exclude": [
"nodemodules/*",
"coverage/*",
".nyc_output/*",
"tests/*",
"crypto.js",
"utils/constants.js"
]
},
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha ./tests/",
"start": "node index.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KengoWada/Cryptography.git"
},
"keywords": [
"crypto",
"node",
"js"
],
"author": "Kengo Wada",
"license": "MIT",
"bugs": {
"url": "https://github.com/KengoWada/Cryptography/issues"
},
"homepage": "https://github.com/KengoWada/Cryptography#readme",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1"
}
}