forked from i-like-robots/react-tags
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.57 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.57 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
55
56
57
58
59
60
61
{
"name": "react-tag-autocomplete",
"version": "5.2.0",
"description": "React Tag Autocomplete is a simple tagging component ready to drop in your React projects.",
"main": "dist-es5/ReactTags.js",
"jsnext:main": "dist-es6/ReactTags.js",
"scripts": {
"pretest": "npm run lint && npm run build:es5",
"test": "jasmine",
"coverage": "istanbul cover -i 'dist-es5/**' jasmine",
"lint": "standard lib/*.js spec/*.js",
"dev": "webpack-dev-server --progress --colors",
"build:example": "webpack -p",
"build:es5": "buble lib -o dist-es5",
"build:es6": "buble lib -o dist-es6 -t node:6",
"prepublish": "npm run build:es5 && npm run build:es6"
},
"files": [
"lib",
"example",
"dist-es5",
"dist-es6",
"LICENSE",
"README.md"
],
"keywords": [
"react",
"tags",
"tag input",
"react-component",
"autosuggest",
"autocomplete"
],
"contributors": [
"Prakhar Srivastav",
"Matt Hinchliffe",
"Simon Hötten"
],
"license": "MIT",
"repository": "https://github.com/i-like-robots/react-tags",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"buble": "^0.12.5",
"buble-loader": "^0.2.2",
"coveralls": "^2.11.12",
"istanbul": "^0.4.4",
"jasmine": "^2.4.1",
"jsdom": "^9.4.1",
"keycode": "^2.1.2",
"react": "^15.2.1",
"react-addons-test-utils": "^15.2.1",
"react-dom": "^15.2.1",
"sinon": "^1.17.5",
"standard": "^7.1.2",
"webpack": "^1.9.4",
"webpack-dev-server": "^1.8.2"
}
}