-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
113 lines (113 loc) · 3.12 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@xendora/react-timer",
"version": "1.1.0",
"description": "React timer component",
"author": "xendora",
"contributors": [
{
"name": "Aseem Upadhyay",
"email": "aseem2301@gmail.com",
"url": "https://github.com/bryze"
},
{
"name": "Rajender Joshi",
"email": "not.so.supertramp@gmail.com",
"url": "https://github.com/crup"
}
],
"keywords": [
"react timer",
"react countdown",
"react countdown timer"
],
"license": "MIT",
"repository": "xendora/react-timer",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"test": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"build": "rollup -c",
"start": "rollup -c -w",
"prepare": "yarn run build",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build",
"docz:dev": "docz dev",
"docz:build": "docz build",
"docz:deploy": "yarn docz:build && gh-pages -d .docz/dist",
"lint:test": "yarn eslint ./src",
"jest:all": "jest __tests__/*",
"commit": "npx git-cz",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"prop-types": "^15.5.4",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.6.3",
"@babel/preset-stage-0": "^7.0.0",
"@babel/preset-stage-2": "^7.0.0",
"@svgr/rollup": "^4.3.2",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.9.0",
"babel-polyfill": "^6.26.0",
"commitizen": "^4.0.3",
"cross-env": "^5.1.4",
"cz-conventional-changelog": "^3.0.2",
"docz": "^2.0.0-rc.53",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^6.2.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2",
"gh-pages": "^2.1.1",
"jest": "^24.9.0",
"react": "^16.10.2",
"react-charts": "^2.0.0-beta.4",
"react-dom": "^16.10.2",
"react-live": "^2.2.1",
"react-test-renderer": "^16.10.2",
"rollup": "^1.20.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-url": "^2.2.2",
"semantic-release": "^15.13.28"
},
"files": [
"dist"
],
"jest": {
"setupFilesAfterEnv": [
"./setupTests.js"
]
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}