forked from ysfaran/react-fluent-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.9 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-fluent-form",
"version": "1.0.1",
"description": "Describe your forms fluently",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"author": "Yusuf Aran <[email protected]>",
"license": "MIT",
"repository": "ysfaran/react-fluent-form",
"homepage": "https://github.com/ysfaran/react-fluent-form/",
"bugs": {
"url": "https://github.com/ysfaran/react-fluent-form/issues"
},
"scripts": {
"clean:dist": "rimraf dist",
"clean:tmp": "rimraf tmp",
"clean": "npm-run-all clean:dist clean:tmp",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"build:package": "npm-run-all clean build clean:tmp",
"prettier-watch": "onchange \"**/*\" --exclude dist/**/* --exclude node_modules/**/* -- prettier --write {{changed}}",
"start": "npm-run-all --parallel build:watch prettier-watch",
"test": "jest",
"test:watch": "jest --watchAll",
"test:lint": "eslint \"src/**\" \"test/**\"",
"test:coverage": "jest --coverage",
"test:package": "npm-run-all test:lint test:coverage",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"files": [
"dist"
],
"dependencies": {},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.2",
"@semantic-release/release-notes-generator": "^9.0.0",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.4.0",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^24.9.1",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/yup": "^0.26.30",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"babel-jest": "^24.9.0",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.3.0",
"husky": "^4.2.2",
"jest": "^25.1.0",
"npm-run-all": "^4.1.5",
"onchange": "6.1.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.12.0",
"rimraf": "^3.0.1",
"rollup": "^1.31.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-dts": "^1.2.1",
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^25.2.0",
"typescript": "^3.7.5",
"yup": "^0.27.0"
},
"keywords": [
"react",
"form",
"hook",
"validation",
"fluent"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}