-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.7 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "react-placehodl",
"version": "1.0.3",
"description": "React placeholders made simple.",
"source": "src/index.js",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "babel ./src --out-dir ./lib",
"build:watch": "babel ./src --out-dir ./lib --watch",
"precommit": "lint-staged",
"lint-js": "eslint -c .eslintrc.json --ext .jsx,.js src",
"prepublishOnly": "npm run lint-js && npm run build"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --single-quote --write",
"eslint -c .eslintrc.json --ext .jsx,.js --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/sorodrigo/react-placehodl.git"
},
"keywords": [
"react",
"placeholder",
"spinner",
"loader",
"render prop"
],
"author": "Rodrigo Solis <solis.ro@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.40",
"@babel/core": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.40",
"@babel/preset-react": "^7.0.0-beta.40",
"@babel/preset-stage-2": "^7.0.0-beta.40",
"babel-eslint": "^8.2.2",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"release": "^3.1.6"
},
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.2.0"
},
"dependencies": {
"fast-random": "^2.0.4",
"prop-types": "^15.6.1"
}
}