-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 933 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
{
"name": "prettier-config",
"version": "1.0.0",
"description": "Automatically generate a prettier config object",
"main": "index.js",
"scripts": {
"start": "parcel index.html --open",
"build": "parcel build index.html --public-url ./",
"prettier": "prettier \"*/**/*.js\" --ignore-path ./.prettierignore --write && git status",
"deploy": "gh-pages -d dist"
},
"repository": "git+https://github.com/mnicole/prettier-config.git",
"keywords": [
"prettier",
"config"
],
"author": "Michele Larson",
"license": "MIT",
"bugs": {
"url": "https://github.com/mnicole/prettier-config/issues"
},
"homepage": "https://mnicole.github.io/prettier-config",
"dependencies": {
"gh-pages": "^1.1.0",
"hyperapp": "^1.0.2"
},
"devDependencies": {
"babel-preset-env": "^1.6.1",
"babel-preset-hyperapp": "^2.3.0",
"parcel-bundler": "^1.5.0",
"prettier": "1.11.1"
}
}