-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 881 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": "js-exercises",
"version": "1.0.0",
"description": "A collection of introductory programming exercises implemented and tested in JavaScript.",
"keywords": [],
"homepage": "https://github.com/AleksArnau/js-exercises",
"bugs": {
"url": "https://github.com/AleksArnau/js-exercises/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AleksArnau/js-exercises.git"
},
"license": "MIT",
"author": {
"name": "Aleksandar Arnautovic",
"email": "[email protected]",
"url": "https://github.com/AleksArnau"
},
"scripts": {
"prebuild": "rm -rf build/",
"build": "npx babel src -d build",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"jest": "^27.3.1"
}
}