-
Notifications
You must be signed in to change notification settings - Fork 170
/
package.json
73 lines (73 loc) · 2 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
{
"name": "react-tag-autocomplete",
"version": "6.3.0",
"description": "React Tag Autocomplete is a simple tagging component ready to drop in your React projects.",
"main": "dist/ReactTags.cjs.js",
"module": "dist/ReactTags.esm.js",
"browser": "dist/ReactTags.umd.js",
"scripts": {
"prepare": "npm run build",
"prepublish": "npm run build",
"pretest": "npm run lint && npm run build",
"lint": "standard lib/*.js spec/*.js",
"test": "jasmine",
"coverage": "nyc --include 'dist/**' npm test",
"dev": "rollup --environment=NODE_ENV:development -c example/rollup.config.js --watch",
"example": "rollup --environment=NODE_ENV:production -c example/rollup.config.js",
"build": "rollup -c rollup.config.js"
},
"keywords": [
"react",
"tags",
"tag input",
"react-component",
"autosuggest",
"autocomplete"
],
"author": "Matt Hinchliffe",
"contributors": [
"Prakhar Srivastav",
"Simon Hötten",
"Andre-John Mas",
"Mike Kamermans",
"Juliette Prétot",
"Andrew Pillsbury",
"Axel Niklasson",
"Serhiy Yefremenko",
"Paul Shannon",
"Herdis Maria",
"Sibiraj S",
"Cristina Lozano",
"Alexander Nestorov",
"Lars Haßler",
"Joel Posti"
],
"license": "MIT",
"repository": "https://github.com/i-like-robots/react-tags",
"peerDependencies": {
"prop-types": "^15.5.0",
"react": "^16.5.0 || ^17.0.0",
"react-dom": "^16.5.0 || ^17.0.0"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.0",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"jasmine": "^4.2.0",
"jsdom": "^19.0.0",
"match-sorter": "^6.3.0",
"nyc": "^15.1.0",
"prop-types": "^15.7.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"rollup": "^2.75.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^14.0.0",
"standard": "^17.0.0"
},
"engines": {
"node": ">= 10.0.0"
}
}