forked from leekevinyg/react-tag-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.33 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
{
"name": "reactjs-tag-input",
"version": "2.0.13",
"homepage": "http://leekevinyg.github.io/react-tag-input",
"repository": "https://github.com/leekevinyg/react-tag-input",
"license": "MIT",
"keywords": [
"react",
"tag",
"tags",
"input",
"pills",
"pill",
"javascript"
],
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"gh-pages": "^2.0.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-scripts": "^1.1.4",
"react-test-renderer": "^16.3.2"
},
"peerDependencies": {
"react": "^16.3.2",
"react-dom": "^16.3.2"
},
"scripts": {
"start": "react-scripts start",
"build-examples": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"coverage": "npm run test -- --coverage",
"eject": "react-scripts eject",
"build": "rm -rf dist && NODE_ENV=production babel src/lib --out-dir dist --copy-files --ignore __tests__,spec.js,test.js,__snapshots__",
"predeploy": "npm run build-examples",
"deploy": "gh-pages -d build"
},
"dependencies": {
"prop-types": "^15.6.2",
"styled-components": "^4.1.3"
},
"jest": {
"collectCoverageFrom": [
"src/lib/**/*.{js}"
]
}
}