-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1003 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
{
"name": "caesar-cipher",
"version": "1.0.1",
"description": "Caesar cipher writing on JavaScript",
"private": true,
"scripts": {
"start": "node cipher",
"dev": "nodemon cipher",
"docs": "jsdoc -c jsdoc.json",
"test": "jest test/index.test.js --detectOpenHandles",
"test:watch": "npm run test -- --watch --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/corocoto/CipherOfCaesar.git"
},
"keywords": [
"cipher",
"javascript",
"caesar-cipher"
],
"author": "Artem Gusev (corocoto) <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/corocoto/CipherOfCaesar/issues"
},
"homepage": "https://github.com/corocoto/CipherOfCaesar#readme",
"dependencies": {
"chalk": "^3.0.0",
"inquirer": "^7.3.3",
"nodemon": "^2.0.6"
},
"devDependencies": {
"clean-jsdoc-theme": "^2.2.13",
"eslint": "^6.8.0",
"jest": "^26.6.3",
"jsdoc": "^3.6.5"
}
}