-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) 路 750 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) 路 750 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
{
"name": "tdd",
"version": "1.0.0",
"description": "study test driven development",
"main": "index.js",
"scripts": {
"test": "jest",
"testwatcher": "jest --watchAll"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.4",
"babel-eslint": "^10.1.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.3",
"prettier": "^2.3.0"
},
"dependencies": {
"@babel/runtime": "^7.14.6",
"core-js": "^3.13.1"
}
}