-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.89 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
{
"name": "react-timer-wrapper",
"version": "0.4.1",
"license": "MIT",
"description": "Composable React Timer component that passes its status to its children.",
"author": "Ryan Hefner <hi@ryanhefner.com> (https://www.ryanhefner.com)",
"repository": "ryanhefner/react-timer-wrapper",
"homepage": "https://ryanhefner.github.io/react-timer-wrapper",
"bugs": {
"url": "https://github.com/ryanhefner/react-timer-wrapper/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ryanhefner"
},
"keywords": [
"react",
"react-component",
"timer",
"countdown",
"react-timer",
"react-timer-wrapper",
"react-timecode",
"react-indicators"
],
"files": [
"index.js",
"es",
"src",
"umd"
],
"directories": {
"lib": "/src"
},
"main": "index.js",
"module": "es/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"clean": "rm -f index.js && rm -fr es && rm -fr umd",
"prebuild": "npm run clean",
"build": "node ./tools/build.js",
"watch": "babel ./src -d . --ignore __tests__,**/*.test.js --watch",
"prepare": "npm run build",
"prepublishOnly": "node ./tools/build.js",
"push-release": "git push origin master && git push --tags",
"test": "jest src/index"
},
"peerDependencies": {
"react": ">=15"
},
"dependencies": {
"clean-react-props": "^0.4.0",
"prop-types": "^15.5.10"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.3.0",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.15",
"coveralls": "^3.1.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.15.3",
"greenkeeper-lockfile": "^1.15.1",
"gzip-size": "^5.0.0",
"jest": "^26.4.0",
"jest-enzyme": "^7.1.2",
"jsdom": "^16.4.0",
"lolex": "^6.0.0",
"pretty-bytes": "^5.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"react-timecode": "^1.1.23",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"rollup": "^2.26.3",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.0",
"rollup-watch": "^4.3.1",
"sinon": "^9.0.3"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/*.test.js"
],
"setupFiles": [
"<rootDir>/tools/jest-setup.js"
],
"setupFilesAfterEnv": [
"./node_modules/jest-enzyme/lib/index.js"
],
"testURL": "http://localhost"
}
}