-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.43 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.43 KB
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
{
"name": "skeleton-plugin-blocks-gutenberg",
"version": "1.0.0",
"dependencies": {
"lodash": "^4.17.4",
"promise": "^8.0.1",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"traits-decorator": "^1.0.1"
},
"devDependencies": {
"autoprefixer": "^7.2.5",
"babel-brunch": "^6.1.1",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
"babel-loader": "7.1.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-react-app": "^3.0.2",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "6.23.0",
"brunch": "^2.10.12",
"css-loader": "0.28.4",
"expect": "^21.2.0",
"file-loader": "0.11.2",
"fs-extra": "3.0.1",
"javascript-brunch": "^2.10.0",
"jest": "20.0.4",
"jest-enzyme": "^4.0.0",
"node-sass": "^4.5.3",
"node-sass-chokidar": "^0.0.3",
"object-assign": "4.1.1",
"postcss-brunch": "^2.1.0",
"postcss-icss-values": "^2.0.1",
"postcss-loader": "2.0.6",
"sass-brunch": "^2.10.4",
"sass-loader": "^6.0.6",
"uglify-js-brunch": "^2.10.0",
"whatwg-fetch": "^2.0.3"
},
"scripts": {
"test": "node scripts/test.js --env=jsdom"
},
"jest": {
"collectCoverageFrom": [
"app/**/*.{js,jsx}"
],
"setupFiles": [
"<rootDir>/config/polyfills.js"
],
"testMatch": [
"<rootDir>/app/javascripts/**/__tests__/**/*.js?(x)",
"<rootDir>/app/javascripts/**/?(*.)(spec|test).js?(x)"
],
"setupTestFrameworkScriptFile": "<rootDir>/config/setupTests.js",
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web"
},
"moduleFileExtensions": [
"web.js",
"js",
"json",
"web.jsx",
"jsx",
"node"
]
}
}