forked from i-like-robots/react-tags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.73 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-tag-autocomplete",
"version": "5.11.1",
"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": "nyc --include 'dist-es5/**' npm test",
"lint": "standard lib/*.js spec/*.js",
"dev": "webpack-dev-server --progress --env.NODE_ENV=development",
"build:example": "webpack -p --env.NODE_ENV=production --config-name example",
"build:es5": "buble lib --objectAssign -o dist-es5",
"build:es6": "buble lib --objectAssign -o dist-es6 -t node:6",
"prepare": "npm run build:es5 && npm run build:es6"
},
"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"
],
"license": "MIT",
"repository": "https://github.com/i-like-robots/react-tags",
"peerDependencies": {
"prop-types": "^15.0.0",
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"buble": "^0.17.0",
"buble-loader": "^0.4.1",
"coveralls": "^3.0.0",
"jasmine": "^3.3.0",
"jsdom": "^14.0.0",
"keycode": "^2.1.2",
"nyc": "^13.3.0",
"prop-types": "^15.7.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"sinon": "^7.3.0",
"standard": "^12.0.1",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.2"
}
}