-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.17 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.17 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
{
"name": "react-hero-form",
"version": "1.0.0-alpha.0",
"description": "React component.",
"keywords": [
"react",
"component",
"form"
],
"author": "varHarrie <varharrie@gmail.com>",
"homepage": "https://github.com/varHarrie/react-hero-form#readme",
"license": "MIT",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"unpack": "lib/umd/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/varHarrie/react-hero-form.git"
},
"scripts": {
"build": "rollup -c && tsc --emitDeclarationOnly",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,test,webpack}/**/*.{js,ts,tsx,json,css,md}": [
"prettier --config ./.prettierrc --write",
"git add"
],
"src/**/*.{ts,tsx}": [
"tslint --project ./tsconfig.json --fix",
"git add"
]
},
"bugs": {
"url": "https://github.com/varHarrie/react-hero-form/issues"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.18",
"@types/react": "^16.8.20",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"husky": "^3.0.4",
"jest": "^24.9.0",
"less": "^3.10.1",
"lint-staged": "^9.2.3",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rollup": "^1.19.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^2.0.3",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tslint-config-standard": "^8.0.1",
"tslint-react": "^4.0.0",
"typescript": "^3.8.3"
}
}