forked from HackYourFuture/JavaScript3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·20 lines (20 loc) · 553 Bytes
/
package.json
File metadata and controls
executable file
·20 lines (20 loc) · 553 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "javascript3",
"version": "1.0.0",
"description": "Course content for the JavaScript3 module",
"repository": "https://github.com/HackYourFuture/JavaScript3.git",
"scripts": {
"lint": "eslint homework",
"test": "npm run lint"
},
"author": "HackYourFuture",
"license": "CC-BY-4.0",
"dependencies": {
"eslint": "^6.2.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2"
}
}