forked from Yoast/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.07 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
{
"name": "@yoast/configuration-wizard",
"version": "1.4.0",
"description": "Package for our configuration wizard",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Yoast/javascript.git",
"directory": "packages/configuration-wizard"
},
"author": "Yoast",
"license": "GPL-3.0",
"private": false,
"scripts": {
"test": "jest",
"lint": "eslint . --max-warnings=11",
"prepublishOnly": "rm -rf dist && cp -R src dist && cp package.json dist/package.json && json -I -f dist/package.json -e \"this.main='index.js'\" && mkdir dist/src && cp src/configuration-wizard.scss dist/src/configuration-wizard.scss && mkdir dist/src/helpers && cp src/helpers/_colors.scss dist/src/helpers/_colors.scss && cp .babelrc dist/.babelrc"
},
"dependencies": {
"@wordpress/i18n": "^1.1.0",
"@yoast/components": "^0.5.0",
"@yoast/helpers": "^0.4.0-rc.2",
"@yoast/style-guide": "^0.4.0-rc.1",
"interpolate-components": "^1.1.1",
"lodash": "^4.17.11",
"prop-types": "^15.7.2"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.1",
"babel-plugin-styled-components": "^1.5.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.10.0",
"enzyme-to-json": "3.3.5",
"jest": "^22.4.3",
"jest-styled-components": "^5.0.1",
"react": "16.6.3",
"react-dom": "16.6.3",
"react-test-renderer": "^16.8.4"
},
"peerDependencies": {
"material-ui": "^0.18.6",
"react": "^16.2.0",
"react-dom": "16.2.0"
},
"jest": {
"testURL": "http://localhost",
"testRegex": ".*Test.js$",
"setupTestFrameworkScriptFile": "<rootDir>/tools/jest/setupTests.js",
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"transformIgnorePatterns": [
"/node_modules/(?!yoastseo|lodash-es).+\\.js$"
]
},
"publishConfig": {
"access": "public"
}
}