-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 910 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
33
34
35
36
{
"name": "exampl",
"version": "1.0.0",
"description": "Simple examples of HTML, CSS, Javascript and npm package playgroud",
"main": "index.js",
"scripts": {
"lint": "prettier --write \"src/**/*.js\" \"src/**/*.html\"",
"precommit": "lint-staged",
"dev": "http-server -p 3005"
},
"lint-staged": {
"src/**/*.{js,json,css,vue}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnipbao/exampl.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gnipbao/exampl/issues"
},
"homepage": "https://github.com/gnipbao/exampl#readme",
"devDependencies": {
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^3.0.0",
"http-server": "^0.11.1",
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"prettier": "^1.15.1"
}
}