forked from tutorialhorizon/react-tagged-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.44 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
{
"name": "react-tagged-input",
"author": "Tutorialhorizon team",
"version": "0.0.18",
"description": "A custom input field to enter tags",
"license": "MIT",
"scripts": {
"dev": "grunt dev",
"lint": "grunt jshint",
"build": "grunt jshint && grunt build",
"test": "grunt build && mocha --compilers js:babel/register tests/unit/*.test.js"
},
"main": "./dist/TaggedInput.js",
"keywords": [
"react",
"react-component",
"react input tagging",
"react input tags"
],
"bugs": "https://github.com/tutorialhorizon/react-tagged-input/issues",
"homepage": "https://github.com/tutorialhorizon/react-tagged-input/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/tutorialhorizon/react-tagged-input.git"
},
"browserify": {
"transform": [
"reactify"
]
},
"peerDependencies": {
"react": ">=0.14 < 0.15"
},
"devDependencies": {
"babel": "^5.8.20",
"chai": "^3.2.0",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-watch": "^0.6.1",
"grunt-jsxhint-babel": "^0.6.1",
"grunt-react": "^0.12.2",
"grunt-webpack": "^1.0.8",
"jsdom": "^3.0",
"jsx-loader": "^0.12.2",
"jsx-test": "^0.8.0",
"mocha": "^2.2.5",
"node-libs-browser": "^0.5.2",
"react": "^0.14.2",
"react-dom": "^0.14.2",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0",
"webpack": "^1.4.13",
"webpack-dev-server": "^1.6.6"
}
}