-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
executable file
·70 lines (70 loc) · 1.99 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
{
"name": "calidation",
"version": "0.0.0-semantically-released",
"description": "A red hot validation library for React",
"main": "dist/index.js",
"keywords": [
"validation",
"react",
"react validation"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/selbekk/calidation"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "babel --out-dir dist --ignore *.spec.js src",
"precommit": "pretty-quick --staged",
"commit": "git-cz",
"test": "jest src",
"test:watch": "jest --watch --coverage src",
"test:coverage": "jest --coverage",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.8",
"@babel/preset-react": "^7.12.13",
"@testing-library/react": "^11.2.5",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"husky": "^0.14.3",
"jest": "^26.6.3",
"prettier": "^1.11.1",
"pretty-quick": "^1.4.1",
"react": "17",
"react-dom": "17",
"regenerator-runtime": "^0.13.7",
"rimraf": "^2.6.2",
"semantic-release": "^15.1.5",
"travis-deploy-once": "^4.4.1"
},
"peerDependencies": {
"react": "^16.3.1 || 17.x",
"react-dom": "^16.3.1 || 17.x"
},
"files": [
"README.md",
"dist"
],
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"calidators": "^3.0.0",
"invariant": "^2.2.4",
"prop-types": "^15.6.1"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testURL": "http://localhost/"
}
}