forked from olahol/react-tagsinput
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "react-tagsinput",
"version": "3.2.0",
"description": "Simple react.js component for inputing tags",
"main": "react-tagsinput.js",
"peerDependencies": {
"react": "^0.14.0"
},
"devDependencies": {
"babel": "^5.8.29",
"babel-eslint": "^4.1.3",
"isparta": "^3.1.0",
"jsdom": "^7.0.2",
"mocha": "^2.3.3",
"react": "^0.14.1",
"react-addons-test-utils": "^0.14.1",
"standard": "^5.3.1"
},
"scripts": {
"test": "standard src/index.js && mocha --compilers js:babel/register",
"build": "babel --module-id ReactTagsInput -m umd src/index.js > react-tagsinput.js",
"coverage": "./node_modules/.bin/babel-node node_modules/.bin/isparta cover --report text --report html node_modules/.bin/_mocha -- --reporter dot",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/olahol/react-tagsinput"
},
"keywords": [
"react",
"tags",
"input",
"component",
"javascript",
"react-component"
],
"author": "Ola Holmström",
"license": "MIT",
"bugs": {
"url": "https://github.com/olahol/react-tagsinput/issues"
},
"standard": {
"parser": "babel-eslint"
},
"homepage": "https://github.com/olahol/react-tagsinput"
}