-
- Downloads
partie a et b
Showing
- .babelrc 2 additions, 1 deletion.babelrc
- .prettierrc 7 additions, 0 deletions.prettierrc
- .vscode/settings.json 6 additions, 0 deletions.vscode/settings.json
- package-lock.json 6 additions, 0 deletionspackage-lock.json
- package.json 6 additions, 2 deletionspackage.json
- src/main.js 46 additions, 106 deletionssrc/main.js
.prettierrc
0 → 100644
.vscode/settings.json
0 → 100644
| ... | ... | @@ -4,14 +4,18 @@ |
| "description": "", | ||
| "main": "index.js", | ||
| "scripts": { | ||
| "test": "echo \"Error: no test specified\" && exit 1" | ||
| "test": "echo \"Error: no test specified\" && exit 1", | ||
| "build": "babel src -d build", | ||
| "watch" : "babel src -d build --verbose --watch --source-maps" | ||
| }, | ||
| "author": "Thomas Fritsch <thomas.fritsch@univ-lille.fr> (https://gitlab.univ-lille.fr/thomas.fritsch)", | ||
| "homepage": "https://gitlab.univ-lille.fr/js", | ||
| "license": "ISC", | ||
| "devDependencies": { | ||
| "@babel/cli": "^7.12.10", | ||
| "@babel/core": "^7.12.10", | ||
| "@babel/preset-env": "^7.12.11" | ||
| "@babel/preset-env": "^7.12.11", | ||
| "prettier": "^2.2.1" | ||
| } | ||
| } |
Please sign in to comment