-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
82 lines (82 loc) · 2.28 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "react-visibility-toggles",
"version": "1.2.0",
"description": "Visibility toggles",
"scripts": {
"test:all": "npm test && npm run test:lint",
"test": "jest --",
"test:coverage": "jest --coverage --",
"test:lint": "eslint . --ext .js --cache",
"test:watch": "jest --watch --",
"dist:build": "rimraf ./dist && babel ./src --out-dir ./dist",
"preversion": "npm run test:all && npm run dist:build && git commit --allow-empty -am \"Update dist\"",
"postpublish": "npm run gh-pages:build && npm run gh-pages:deploy",
"start": "styleguidist server",
"gh-pages:build": "styleguidist build",
"gh-pages:deploy": "gh-pages -d styleguide"
},
"main": "dist",
"repository": {
"type": "git",
"url": "https://github.com/reactabular/react-visibility-toggles.git"
},
"keywords": [
"react",
"reactjs",
"reactabular"
],
"files": [
"dist",
"style.css"
],
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules"
]
},
"author": "Juho Vepsalainen <bebraw@gmail.com> (http://github.com/bebraw)",
"license": "MIT",
"bugs": {
"url": "https://github.com/reactabular/react-visibility-toggles/issues"
},
"homepage": "https://reactabular.github.io/react-visibility-toggles/",
"dependencies": {
"prop-types": "^15.6.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-jest": "^17.0.2",
"babel-loader": "^6.2.9",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"classnames": "^2.2.5",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"gh-pages": "^0.12.0",
"git-prepush-hook": "^1.0.1",
"jest": "^17.0.3",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-styleguidist": "^4.4.1",
"rimraf": "^2.5.4",
"webpack": "^1.14.0",
"webpack-merge": "^1.0.2"
},
"peerDependencies": {
"react": ">= 15.0.0 < 17.0.0"
},
"pre-push": [
"test:all"
]
}