forked from react-tags/react-tags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.65 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "react-tag-input",
"version": "0.0.0-semantically-released",
"description": "React tags is a fantastically simple tagging component for your React projects",
"main": "dist-modules/components/ReactTags.js",
"files": [
"dist-modules",
"dist"
],
"sideEffects": false,
"scripts": {
"test": "jest --notify --coverage",
"test:watch": "jest --watch --notify --coverage",
"start": "webpack-dev-server --config webpack-dev-server.config.js --progress --inline --colors",
"format": "prettier --write src/*.js __tests__/*.js",
"build": "webpack --config webpack-production.config.js --progress --colors && babel src --out-dir dist-modules --copy-files",
"precommit": "./set_up_hooks.sh",
"semantic-release": "semantic-release",
"commit": "git-cz"
},
"keywords": [
"react",
"drag-drop",
"tags",
"tag input",
"react-component",
"autosuggest"
],
"author": "Prakhar Srivastav",
"license": "MIT",
"repository": "https://github.com/prakhar1989/react-tags",
"peerDependencies": {
"react": "^16.3.1",
"react-dnd": "^5.0.0",
"react-dnd-html5-backend": "^3.0.2",
"react-dom": "^16.3.1"
},
"dependencies": {
"classnames": "~2.2.6",
"lodash": "~4.17.12",
"prop-types": "~15.7.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.0",
"babel-jest": "^23.0.0-alpha.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"commitizen": "^4.0.4",
"css-loader": "^3.2.1",
"cz-conventional-changelog": "^3.0.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"eslint": "^7.3.1",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.3",
"greenkeeper-lockfile": "^1.15.1",
"jest": "^22.1.4",
"jsdom": "^11.6.2",
"node-sass": "^4.9.4",
"npm-run-all": "^4.1.4",
"opn": "^5.2.0",
"prettier": "^2.0.0",
"raf": "^3.4.1",
"react": "^16.4.2",
"react-dnd": "^5.0.0",
"react-dnd-html5-backend": "^3.0.2",
"react-dnd-test-backend": "^3.0.2",
"react-dom": "^16.4.2",
"react-test-renderer": "^16.4.2",
"sass-loader": "^7.1.0",
"semantic-release": "^15.13.19",
"sinon": "^7.2.7",
"style-loader": "^1.0.1",
"webpack": "^4.14.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.0.2",
"webpack-dev-server": "^3.1.14"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}