forked from Chalarangelo/30-seconds-of-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 978 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": "30-seconds-of-react",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/30-seconds/30-seconds-of-react.git"
},
"scripts": {
"extractor": "node ./scripts/extract.js",
"builder": "node ./scripts/build.js",
"linter": "prettier **/*.{js,json,css,md} --write"
},
"devDependencies": {
"chalk": "^2.4.2",
"fs-extra": "^7.0.1",
"markdown-builder": "^0.9.0",
"prettier": "^1.14.3"
},
"prettier": {
"singleQuote": true,
"printWidth": 100
},
"description": "Curated collection of useful React snippets that you can understand in 30 seconds or less.",
"main": "index.js",
"keywords": [
"react",
"snippets",
"javascript"
],
"author": "30-seconds ([email protected])",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/30-seconds/30-seconds-of-react/issues"
},
"homepage": "https://github.com/30-seconds/30-seconds-of-react#readme"
}