-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
61 lines (61 loc) · 1.46 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
{
"name": "react-scramble",
"version": "0.5.1",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"build:demo": "cd example && yarn build",
"deploy:demo": "gh-pages -d example/build",
"precommit": "lint-staged",
"test": "jest"
},
"lint-staged": {
"{src,example/src}/**/*.{js,css}": [
"prettier --single-quote --no-semi --trailing-comma es5 --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/cettoana/react-scramble.git"
},
"dependencies": {
"prop-types": "^15.6.1",
"ramda": "^0.25.0",
"recompose": "^0.30.0",
"rxjs": "^6.2.0"
},
"peerDependencies": {
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^23.0.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-ramda": "^1.5.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0",
"gh-pages": "^1.1.0",
"husky": "^0.14.3",
"jest": "^23.1.0",
"lint-staged": "^7.1.3",
"prettier": "1.13.4",
"react-test-renderer": "^16.4.0",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"keywords": [
"react",
"react-component"
]
}