-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
114 lines (114 loc) · 3.51 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
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "react-faq-component",
"version": "1.3.4",
"main": "build/index.js",
"module": "build/index.es.js",
"description": "React package to render collapsible faq sections",
"scripts": {
"test": "jest --verbose ./src",
"lint:js": "eslint src/*.js",
"lint": "eslint src/*.js",
"prebuild": "npm-run-all lint:js clean",
"build": "cross-env NODE_ENV=production rollup -c",
"start": "rollup -c -w",
"clean": "rimraf build dist",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"website": "node ./scripts/update_website.js",
"prerelease": "npm run build",
"release": "standard-version"
},
"files": [
"build",
"LICENCE",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/binodswain/react-faq-component.git"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less|sass|scss)$": "identity-obj-proxy",
".+\\.(svg|png|jpg|ttf|woff|woff2)$": "jest-transform-stub"
}
},
"peerDependencies": {
"prop-types": "^15.5.4",
"react": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"babel-eslint": "^10.1.0",
"chalk": "^4.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.11.0",
"eslint-plugin-react": "^7.21.4",
"fs-extra": "^9.0.1",
"husky": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^10.4.0",
"mini-css-extract-plugin": "^0.8.2",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"prettier-eslint-cli": "^5.0.0",
"prop-types": "^15.5.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"rimraf": "^3.0.2",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-postcss": "^2.9.0",
"rollup-plugin-svg": "^2.0.0",
"rollup-plugin-terser": "^6.1.0",
"standard-version": "^9.0.0"
},
"engines": {
"node": ">=8",
"npm": ">=5"
},
"keywords": [
"react",
"faq",
"accordion",
"collapsible",
"questions"
],
"author": "Binod <[email protected]> ([email protected])",
"license": "MIT",
"homepage": "https://github.com/binodswain/react-faq-component#readme",
"lint-staged": {
"*.scss": [
"prettier --write"
],
"*.{js,jsx,mjs,md,json,yml}": [
"prettier-eslint --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-message": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"standard-version": {
"skip": {
"changelog": true
}
}
}