-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.21 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
{
"name": "check-some",
"version": "0.0.6",
"description": "Component to help with form validation in react",
"author": "Nate Norberg",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:Quiq/check-some.git"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"scripts": {
"check-types": "./node_modules/.bin/tsc --noEmit --skipLibCheck",
"build:types": "./node_modules/.bin/tsc --emitDeclarationOnly",
"test": "yarn run check-types && jest --env=jsdom",
"build": "yarn run build:types && rollup -c",
"start": "rollup -c -w",
"prepublish": "npm run build",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build",
"jest": "jest --watch --env=jsdom",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"git add"
]
},
"jest": {
"modulePaths": [
"src",
"node_modules"
],
"rootDir": ".",
"notify": true
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-external-helpers": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-do-expressions": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-function-bind": "^7.8.3",
"@babel/plugin-proposal-function-sent": "^7.8.3",
"@babel/plugin-proposal-json-strings": "^7.8.3",
"@babel/plugin-proposal-logical-assignment-operators": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-proposal-pipeline-operator": "^7.8.3",
"@babel/plugin-proposal-throw-expressions": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-flow": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@testing-library/react": "^9.5.0",
"@types/jest": "^24.9.1",
"@types/lodash": "^4.14.149",
"@types/react": "^16.9.23",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^25.1.0",
"flow-bin": "^0.60.1",
"gh-pages": "^1.2.0",
"husky": "^0.14.3",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"lint-staged": "^6.1.1",
"prettier": "^1.19.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"regenerator-runtime": "^0.11.1",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^8.4.1",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-postcss": "^0.5.6",
"typescript": "^3.8.3"
},
"files": [
"dist"
],
"dependencies": {},
"resolutions": {
"lodash": "4.17.21"
}
}