forked from cse110-sp21-group11/cse110-sp21-group11
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
37 lines (37 loc) · 1.2 KB
/
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
{
"name": "root",
"description": "This is the repository for team 11's CSE 110 project. Team Name: It's not a bug, It's a feature",
"version": "1.0.0",
"main": ".eslintrc.js",
"scripts": {
"jsdoc": "jsdoc -c jsdoc.json",
"lint": "./node_modules/.bin/eslint ./src/back-end ./src/front-end -c ./.eslintrc.js --ignore-path ./.eslintignore",
"lintFix": "./node_modules/.bin/eslint --fix ./src/back-end ./src/front-end -c ./.eslintrc.js --ignore-path ./.eslintignore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cse110-sp21-group11/cse110-sp21-group11.git"
},
"author": "CSE 110 Team 11",
"license": "ISC",
"bugs": {
"url": "https://github.com/cse110-sp21-group11/cse110-sp21-group11/issues"
},
"homepage": "https://github.com/cse110-sp21-group11/cse110-sp21-group11#readme",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"babel-jest": "^27.0.2",
"eslint": "^7.26.0",
"eslint-plugin-jest": "^26.4.6",
"jest": "^27.0.4",
"jest-puppeteer": "^5.0.3",
"jsdoc": "^3.6.10",
"puppeteer": "^9.1.1",
"supertest": "^6.2.3"
},
"jest": {
"preset": "jest-puppeteer",
"verbose": true
}
}