-
Notifications
You must be signed in to change notification settings - Fork 233
/
package.json
57 lines (57 loc) · 1.63 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
{
"name": "react-tagsinput",
"version": "3.20.3",
"description": "Highly customizable React component for inputing tags",
"main": "react-tagsinput.js",
"peerDependencies": {
"react": "^18.0.0 || ^17.0.0 || ^16.0.0 || ^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"jsdom": "^20.0.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sinon": "^14.0.1",
"standard": "^17.0.0"
},
"scripts": {
"test": "standard src/index.js && mocha --require babel-register",
"lint": "standard src/index.js",
"fix": "standard src/index.js --fix",
"build": "babel --module-id ReactTagsInput -m umd src/index.js > react-tagsinput.js",
"coverage": "npx nyc --reporter=lcov --reporter=text-summary npm test",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/olahol/react-tagsinput"
},
"keywords": [
"react",
"tags",
"input",
"component",
"javascript",
"react-component"
],
"author": "Ola Holmström",
"license": "MIT",
"bugs": {
"url": "https://github.com/olahol/react-tagsinput/issues"
},
"homepage": "https://github.com/olahol/react-tagsinput",
"files": [
"react-tagsinput.css"
]
}