forked from theforeman/foreman-tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.31 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
{
"name": "foreman-tasks",
"version": "1.0.0",
"description": "Foreman Tasks =============",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint -c .eslintrc webpack/",
"test": "node node_modules/.bin/jest --no-cache",
"test:watch": "node node_modules/.bin/jest --watchAll",
"test:current": "node node_modules/.bin/jest --watch",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"storybook": "start-storybook -p 6006",
"create-react-component": "yo react-domain"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theforeman/foreman-tasks.git"
},
"bugs": {
"url": "http://projects.theforeman.org/projects/foreman-tasks/issues"
},
"devDependencies": {
"@storybook/addon-actions": "~3.4.11",
"@storybook/addon-knobs": "~3.4.11",
"@storybook/react": "~3.4.11",
"babel-cli": "^6.10.1",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.1",
"babel-plugin-dynamic-import-node": "^2.0.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.5.0",
"coveralls": "^3.0.0",
"enzyme": "^3.4.0",
"enzyme-adapter-react-16": "^1.4.0",
"enzyme-to-json": "^3.2.1",
"eslint": "^4.10.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-plugin-patternfly-react": "0.2.0",
"jest-cli": "^23.6.0",
"jest-prop-type-error": "^1.1.0",
"patternfly": "^3.59.1",
"prettier": "^1.13.5",
"raf": "^3.4.0",
"react-redux-test-utils": "^0.1.1",
"react-remarkable": "^1.1.3",
"stylelint": "^9.3.0",
"stylelint-config-standard": "^18.0.0"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.5",
"patternfly-react": "^2.29.0",
"prop-types": "^15.6.0",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-redux": "^5.0.6",
"react-router": "^4.3.1",
"react-router-bootstrap": "^0.24.4",
"react-router-dom": "^4.3.1",
"redux": "^3.6.0",
"redux-thunk": "^2.3.0",
"reselect": "^3.0.1",
"seamless-immutable": "^7.1.2",
"uuid": "^3.3.2"
},
"jest": {
"automock": true,
"verbose": true,
"testMatch": [
"**/*.test.js"
],
"testURL": "http://localhost/",
"collectCoverage": true,
"collectCoverageFrom": [
"webpack/**/*.js",
"!webpack/index.js",
"!webpack/test_setup.js",
"!webpack/**/bundle*",
"!webpack/stories/**",
"!webpack/**/*stories.js"
],
"coverageReporters": [
"lcov"
],
"unmockedModulePathPatterns": [
"webpack/",
"react",
"node_modules/"
],
"moduleNameMapper": {
"^.+\\.(png|gif|css|scss)$": "identity-obj-proxy"
},
"globals": {
"__testing__": true
},
"transform": {
"^.+\\.js$": "babel-jest"
},
"moduleDirectories": [
"node_modules",
"webpack"
],
"setupFiles": [
"raf/polyfill",
"jest-prop-type-error",
"./webpack/test_setup.js"
]
}
}