-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 855 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
{
"name": "firestore-notes-app",
"version": "1.0.0",
"description": "A simple notes app using Firestore API",
"main": "main.js",
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"serve": "live-server ./index.html",
"precommit": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/utkarshbhatt12/firestore-notes-app.git"
},
"author": "Utkarsh Bhatt",
"license": "MIT",
"bugs": {
"url": "https://github.com/utkarshbhatt12/firestore-notes-app/issues"
},
"homepage": "https://github.com/utkarshbhatt12/firestore-notes-app#readme",
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsdoc": "^3.6.2",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-security": "^1.4.0"
}
}