-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
94 lines (94 loc) · 2.82 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
92
93
94
{
"name": "react-tagging-input",
"version": "2.1.2",
"description": "Simple tagging component",
"main": "dist/react-tags.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JFusco/react-tagging-input"
},
"author": {
"name": "Joe Fusco",
"email": "[email protected]"
},
"scripts": {
"version": "npm run build && git add .",
"postversion": "git push origin master --tags",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"test": "jest --coverage",
"lint": "eslint --fix --color --debug --ignore-path .eslintignore ./src/component/js/*",
"start": "cross-env NODE_ENV=development webpack-dev-server --hot --inline --open",
"start-docs": "webpack-dev-server --config ./webpack.config.example.babel.js --hot --inline --open",
"build-docs": "npm test && webpack --config ./webpack.config.example.babel.js --progress --colors",
"build": "npm run lint && npm run flow && cross-env NODE_ENV=production webpack --display-chunks --display-modules --progress --colors && npm run build-docs"
},
"peerDependencies": {
"react": "^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"clean-webpack-plugin": "^0.1.17",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"del": "^3.0.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"enzyme-to-json": "^3.1.2",
"eslint": "^4.8.0",
"eslint-plugin-flowtype": "^2.39.1",
"extract-text-webpack-plugin": "^3.0.1",
"flow-bin": "^0.52.0",
"jest-cli": "^21.2.1",
"node-sass": "^4.5.3",
"react": "^16.0.0",
"react-addons-test-utils": "^15.6.2",
"react-addons-update": "^15.6.2",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"run-sequence": "^2.1.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
},
"jest": {
"moduleFileExtensions": [
"js"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/__tests__/__fixtures__/"
],
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"\\.(css|scss)$": "<rootDir>/__mocks__/styleMock.js"
},
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils"
],
"globals": {
"__DEV__": true
}
},
"keywords": [
"react",
"tags",
"react component",
"tag input"
]
}