-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
80 lines (80 loc) · 1.97 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
{
"name": "react-responsive-select",
"version": "7.0.7",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/react-responsive-select.esm.js",
"author": "Ben Bowes <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/benbowes/react-responsive-select"
},
"homepage": "https://benbowes.github.io/react-responsive-select",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"prepublishOnly": "npm run build",
"start": "npx styleguidist server",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"build:styleguide": "npx styleguidist build --ts",
"build": "tsdx build --format cjs,esm,umd && npm run copyfiles && npm run deleteUnwantedDistEntries && npm run build:styleguide",
"copyfiles": "cp src/react-responsive-select.css dist/react-responsive-select.css",
"deleteUnwantedDistEntries": "rm -rf dist/docs && rm -rf dist/__mocks__"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"keywords": [
"select",
"react select",
"react dropdown",
"accessible react select",
"component",
"responsive",
"mobile",
"touch",
"select",
"dropdown",
"accessible",
"multiselect"
],
"dependencies": {
"singleline": "^2.0.0"
},
"peerDependencies": {
"react": ">=16"
},
"devDependencies": {
"@testing-library/react": "^10.4.5",
"@types/react": "^16.9.42",
"@types/react-dom": "^16.9.8",
"css-loader": "^5.2.5",
"formik": "^2.1.4",
"husky": "^4.3.8",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-styleguidist": "^13.0.0",
"style-loader": "^1.2.1",
"ts-loader": "^9.4.2",
"tsdx": "^0.14.1",
"tslib": "^2.0.0",
"typescript": "^3.9.6",
"webpack": "^5.94.0",
"yup": "^0.29.1"
}
}