-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.99 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.99 KB
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
{
"name": "react-simple-timefield",
"version": "3.3.1",
"description": "Simple React time input field",
"author": "Anton Fisher <a.fschr@gmail.com> (http://antonfisher.com)",
"license": "MIT",
"main": "index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc && cd ./demo && npm run build && cd -",
"test": "jest",
"lint": "eslint --ignore-path .gitignore --ignore-pattern docs -- .",
"prettier": "prettier --ignore-path .gitignore --write './**/*.js'",
"typecheck": "tsc",
"format": "npm run prettier && npm run lint",
"cover": "jest --coverage",
"coveralls": "npm run cover && cat ./coverage/lcov.info | coveralls",
"release:patch": "npm run format && npm test && npm run build && npx standard-version -r patch && git push --follow-tags origin master",
"release:minor": "npm run format && npm test && npm run build && npx standard-version -r minor && git push --follow-tags origin master",
"release:major": "npm run format && npm test && npm run build && npx standard-version -r major && git push --follow-tags origin master",
"update-contributors": "npx contributor"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antonfisher/react-simple-timefield.git"
},
"keywords": [
"react",
"time",
"timefield",
"timeinput",
"input"
],
"bugs": {
"url": "https://github.com/antonfisher/react-simple-timefield/issues"
},
"homepage": "https://github.com/antonfisher/react-simple-timefield#readme",
"jest": {
"setupTestFrameworkScriptFile": "./tests/setup.js"
},
"peerDependencies": {
"prop-types": ">= 15",
"react": ">= 16.0.0",
"react-dom": ">= 16.0.0"
},
"devDependencies": {
"@types/enzyme": "3.10.4",
"@types/jest": "24.0.25",
"@types/react": "16.9.17",
"@types/react-dom": "16.9.8",
"@typescript-eslint/eslint-plugin": "2.15.0",
"@typescript-eslint/parser": "2.15.0",
"babel-cli": "6.26.0",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"coveralls": "3.0.9",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"eslint": "6.8.0",
"eslint-config-fbjs": "3.1.1",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-flowtype": "4.6.0",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.17.0",
"eslint-plugin-relay": "1.5.0",
"jest": "24.9.0",
"prettier": "1.19.1",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-test-renderer": "16.12.0",
"ts-jest": "24.3.0",
"typescript": "3.7.4"
},
"dependencies": {
"@types/enzyme-adapter-react-16": "1.0.5"
},
"contributors": [
"Anton Fisher (https://github.com/antonfisher)",
"Nicholas Yang (https://github.com/NicholasLYang)"
],
"directories": {
"doc": "docs",
"test": "tests"
}
}