forked from olahol/react-tagsinput
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.91 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
{
"name": "react-tagsinput",
"version": "3.19.0",
"description": "Highly customizable React component for inputing tags",
"main": "react-tagsinput.js",
"peerDependencies": {
"react": "^16.0.0 || ^15.0.0 || ^0.14.0"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-plugin-add-module-exports": "^0.2.0",
"babel-plugin-transform-es2015-modules-umd": "^6.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.3.3",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.8.0",
"istanbul": "^1.1.0-alpha.1",
"jsdom": "^7.0.2",
"mocha": "^2.3.3",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-autosuggest": "^9.0.0",
"react-dom": "^16.0.0",
"react-input-autosize": "^1.0.0",
"reactpack": "^0.9.0",
"sinon": "^2.1.0",
"standard": "^8.6.0"
},
"scripts": {
"test": "standard src/index.js && mocha --compilers js:babel-register",
"build": "babel --module-id ReactTagsInput -m umd src/index.js > react-tagsinput.js",
"build-example": "reactpack --no-extract --no-source-map --no-html example/index.js example/",
"build-example-watch": "reactpack -w --no-extract --no-source-map --no-html example/index.js example/",
"coverage": "istanbul cover --report text --report html _mocha -- --compilers js:babel-register",
"prepublish": "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"
},
"standard": {
"parser": "babel-eslint"
},
"homepage": "https://github.com/olahol/react-tagsinput"
}