-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.36 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
{
"name": "autosearch",
"version": "1.2.1",
"description": "react autocomplete search component",
"author": "Kyle Caprio (https://github.com/capriok)",
"repository": {
"type": "git",
"url": "git+https://github.com/capriok/AutoSearch.git"
},
"bugs": {
"url": "https://github.com/capriok/AutoSearch/issues"
},
"homepage": "https://github.com/capriok/AutoSearch#readme",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"build": "rollup -c",
"dev": "concurrently \"rollup -c -w\" \"cd .testing && npm start\"",
"devDocs": "cd Docs && npm uninstall autosearch && npm link autosearch && npm start",
"postpublish": "cd docs && npm install autosearch@latest && cd.."
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.7",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"concurrently": "^6.2.0",
"react": "*",
"react-dom": "*",
"rollup": "^2.52.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.3.2"
},
"files": [
"dist"
],
"keywords": [
"react",
"typescript",
"rollup",
"npm"
]
}