-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
122 lines (122 loc) · 3.61 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "semantic-ui-redux-form-fields",
"version": "1.0.1",
"description": "Semantic UI Fields integration with Redux From",
"license": "MIT",
"author": "te schultz",
"main": "dist/semantic-ui-redux-form-fields.js",
"keywords": [
"form",
"form-fields",
"react",
"redux",
"redux-form",
"semantic-ui"
],
"repository": {
"type": "git",
"url": "https://github.com/artisin/semantic-ui-redux-form-fields"
},
"bugs": {
"url": "https://github.com/artisin/semantic-ui-redux-form-fields/issues"
},
"scripts": {
"build": "yarn run clean && cross-env NODE_ENV=production webpack --color --progress",
"clean": "rm -rf dist/*",
"commit": "git cz",
"dev": "yarn run clean && cross-env NODE_ENV=development webpack -w",
"prepublish": "yarn run test && yarn run build",
"release:major": "yarn run test && bumped release major",
"release:minor": "yarn run test && bumped release minor",
"release:patch": "yarn run test && bumped release patch",
"test": "cross-env NODE_ENV=test jest --coverage",
"test:build": "cross-env NODE_ENV=production npm run build && jest --coverage",
"test:watch": "cross-env NODE_ENV=test jest --watchAll"
},
"dependencies": {
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"recompose": "^0.25.1",
"semantic-ui-react": "^0.74.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.25.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-loader": "^7.0.0",
"babel-minify": "^0.2.0",
"babel-plugin-inline-react-svg": "^0.4.0",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-inline-environment-variables": "^0.2.0",
"babel-plugin-transform-node-env-inline": "^0.2.0",
"babel-plugin-wrap-in-js": "^1.1.1",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"bumped": "^0.10.4",
"bumped-changelog": "^0.3.10",
"bumped-terminal": "^0.7.3",
"commitizen": "^2.9.6",
"cross-env": "^5.0.5",
"cz-customizable-te": "^6.0.0",
"enzyme": "^3.0.0-beta.5",
"enzyme-adapter-react-16": "^1.0.0",
"enzyme-matchers": "^4.0.0",
"enzyme-to-json": "^3.0.1",
"eslint": "^4.7.2",
"expect": "^21.2.1",
"expect-enzyme": "^1.2.1",
"jest": "^21.2.1",
"jest-enzyme": "^4.0.0",
"jsdom": "^11.2.0",
"lodash": "^4.17.4",
"lodash-webpack-plugin": "^0.11.4",
"moment-timezone": "^0.5.13",
"rc-time-picker": "^2.4.1",
"react-redux": "^5.0.6",
"react-test-renderer": "^16.0.0",
"redux": "^3.7.2",
"redux-form": "^7.0.4",
"redux-mock-store": "^1.3.0",
"webpack": "^3.6.0",
"webpack-node-externals": "^1.6.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable-te"
},
"cz-customizable": {
"config": "./.cz-config.js"
}
},
"jest": {
"bail": true,
"testPathIgnorePatterns": [
"<rootDir>/__tests__/dom.js",
"<rootDir>/__tests__/helpers.js"
],
"transform": {
"^.+\\.(jsx|js)?$": "<rootDir>/node_modules/babel-jest"
},
"setupFiles": [
"<rootDir>/__tests__/helpers.js",
"<rootDir>/__tests__/dom.js"
],
"setupTestFrameworkScriptFile": "<rootDir>/node_modules/jest-enzyme/lib/index.js",
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"collectCoverageFrom": [
"dist/semantic-ui-redux-form-fields.js",
"!**/node_modules/**"
],
"coverageReporters": [
"json",
"text"
]
}
}