-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
66 lines (66 loc) · 1.64 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
{
"name": "@sentisis/react-tags-input",
"version": "1.0.6",
"description": "React input to create tags",
"main": "src/TagsInput.jsx",
"public": true,
"directories": {
"example": "examples"
},
"scripts": {
"test": "jest",
"build": "babel src -d lib",
"start": "babel src --watch -d lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sentisis/react-tags-input.git"
},
"keywords": [
"react",
"tags",
"input"
],
"author": "Alberto Restifo <arestifo@sentisis.com>",
"contributors": [
{
"name": "Fernando Aguero",
"email": "faguero@sentisis.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Sentisis/tags-input/issues"
},
"homepage": "https://github.com/Sentisis/tags-input#readme",
"dependencies": {
"classnames": "^2.2.5",
"clipboard": "^2.0.4",
"lodash": "^4.17.11",
"mousetrap": "^1.6.0",
"prop-types": "^15.5.10",
"react": "^16.6.3"
},
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.5.0",
"babel-loader": "^8.0.6",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"jest": "^24.5.0",
"react-test-renderer": "^16.6.3",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8"
},
"jest": {
"collectCoverage": true
}
}