forked from react-tags/react-tags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.96 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
{
"name": "react-tag-input",
"version": "4.9.1",
"description": "React tags is a fantastically simple tagging component for your React projects",
"main": "dist-modules/ReactTags.js",
"scripts": {
"test": "jest --notify --coverage",
"open-localhost": "node -e 'require(\"opn\")(\"http://localhost:8090/example/index.html\")'",
"test-watch": "jest --watch --notify",
"dev": "webpack-dev-server --config webpack-dev-server.config.js --progress --inline --colors",
"format": "prettier --write lib/*.js test/*.js",
"build": "webpack --config webpack-production.config.js --progress --colors && babel lib --out-dir dist-modules",
"start": "npm-run-all --parallel open-localhost dev"
},
"keywords": [
"react",
"drag-drop",
"tags",
"tag input",
"react-component",
"autosuggest"
],
"author": "Prakhar Srivastav",
"license": "MIT",
"repository": "https://github.com/prakhar1989/react-tags",
"jest": {
"setupFiles": [
"raf/polyfill",
"./test/setupTest.js"
]
},
"dependencies": {
"lodash": "4.17.5",
"prop-types": "15.6.1",
"react": "16.2.0",
"react-dnd": "2.6.0",
"react-dnd-html5-backend": "2.5.4",
"react-dom": "16.2.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-jest": "22.4.1",
"babel-loader": "7.1.2",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-register": "6.26.0",
"chai": "4.1.2",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.0",
"eslint": "4.19.1",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.7.0",
"jest": "22.1.4",
"jsdom": "11.6.2",
"npm-run-all": "4.1.2",
"opn": "5.2.0",
"prettier": "1.10.2",
"raf": "3.4.0",
"react-dnd-test-backend": "2.3.0",
"react-test-renderer": "16.1.1",
"sinon": "4.2.2",
"webpack": "4.2.0",
"webpack-dev-server": "2.11.1"
}
}