forked from CommandShiftHQ/javascript-basics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 813 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
{
"name": "javascript-basics",
"version": "2.0.0",
"description": "Exercises covering basic JavaScript concepts",
"scripts": {
"test": "jest --verbose"
},
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/MCRcodes/javascript-basics.git"
},
"keywords": [
"JavaScript"
],
"author": "Manchester Codes",
"license": "ISC",
"bugs": {
"url": "https://github.com/MCRcodes/javascript-basics/issues"
},
"homepage": "https://github.com/MCRcodes/javascript-basics#readme",
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^27.0.6",
"prettier": "1.18.2"
}
}