-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 KB
/
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
37
38
39
40
41
42
{
"name": "hello-hacktoberfest",
"version": "0.1.0",
"description": "Hello, Hacktoberfest! A Hello, World! to get started with open source",
"author": "Thibaud Colas",
"license": "CC0",
"homepage": "https://ouluwebdev.github.io/hello-hacktoberfest",
"repository": {
"type": "git",
"url": "git+https://github.com/ouluwebdev/hello-hacktoberfest.git"
},
"bugs": {
"url": "https://github.com/ouluwebdev/hello-hacktoberfest/issues"
},
"keywords": [
"hacktoberfest",
"getting started",
"hello-world"
],
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "always",
"proseWrap": "preserve"
},
"devDependencies": {
"fs-extra": "^7.0.0",
"prettier": "^1.14.2"
},
"scripts": {
"lint": "prettier --list-different '**/*.{md,css,js,json,yaml,yml}'",
"format": "prettier --write '**/*.{md,css,js,json,yaml,yml}'",
"build": "node build.js",
"test:ci": "npm run lint -s"
}
}