forked from CSE-110-Group-29/Electric-Pomato
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.3 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
38
39
40
{
"name": "cse110-w21-group29",
"version": "1.0.0",
"description": "Electric Pomato!",
"main": "index.js",
"scripts": {
"lint": "NODE_OPTIONS=--experimental-vm-modules npx eslint ./source/js --ext .js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest ./source/__tests__",
"generate-docs": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose",
"coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"sass-compile": "node-sass ./source/scss/main.scss ./source/css/main.css",
"sass-watch": "node-sass ./source/scss/main.scss ./source/css/main.css -w"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"jsdoc": "^3.6.6",
"minami": "^1.2.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DonaldWolfson/cse110-w21-group29.git"
},
"bugs": {
"url": "https://github.com/DonaldWolfson/cse110-w21-group29/issues"
},
"homepage": "https://github.com/DonaldWolfson/cse110-w21-group29#readme",
"dependencies": {
"@jest/globals": "^26.6.2",
"bootstrap": "^5.0.0-beta2",
"node-sass": "^7.0.3"
}
}