-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 993 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
{
"name": "caesar_cipher",
"version": "1.0.0",
"description": "Implementation created with Node.js, Parcel (bundling tool), Jest (as testing framework) and ESLint (for improving syntax and enforce code style).\r During this project I also wanted to build up my skills around building good looking repository including all the necessary guidelines.",
"main": "main.js",
"scripts": {
"test": "jest --watchAll --verbose",
"start": "parcel docs/index.html",
"build": "parcel build docs/index.html"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"jest": "^27.0.4"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@types/jest": "^26.0.23",
"babel-jest": "^27.0.5",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"parcel-bundler": "^1.12.5"
}
}