-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
94 lines (94 loc) · 2.51 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
{
"name": "react-stopwatch",
"version": "2.0.4",
"description": "React Stopwatch component using Render Props",
"main": "dist/react-stopwatch.js",
"umd:main": "dist/react-stopwatch.umd.js",
"module": "dist/react-stopwatch.m.js",
"source": "src/index.js",
"scripts": {
"flow": "flow",
"example": "parcel ./demo/index.html --out-dir example",
"build": "microbundle -o dist/ --sourcemap false --compress false",
"dev": "microbundle watch -o dist/ --sourcemap false --compress false",
"eslint": "eslint ./src && eslint ./demo",
"test": "jest",
"coverage": "jest --coverage",
"snapshots": "jest -u"
},
"repository": {
"type": "git",
"url": "https://github.com/slorenzo/react-stopwatch.git"
},
"keywords": [
"react",
"component",
"react-component",
"components",
"ui",
"stopwatch",
"react-stopwatch"
],
"files": [
"dist/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"author": "Sebastian Lorenzo",
"license": "MIT",
"bugs": {
"url": "https://github.com/slorenzo/react-stopwatch/issues"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/demo/",
"/example/",
"/dist/"
],
"automock": false,
"verbose": false,
"testRegex": "\\.test\\.js$",
"testURL": "http://localhost/"
},
"homepage": "https://github.com/slorenzo/react-stopwatch",
"peerDependencies": {
"react": "^16.8.6"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^25.1.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-flow-vars": "^0.5.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^23.0.4",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.3",
"flow-bin": "^0.117.0",
"jest": "^24.8.0",
"microbundle": "^0.11.0",
"parcel-bundler": "^1.12.3",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"dependencies": {
"ms": "^2.1.2"
}
}