This repository was archived by the owner on May 12, 2026. It is now read-only.
forked from Yoast/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.22 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
{
"name": "@yoast/helpers",
"version": "0.16.0",
"description": "All Yoast helper functions.",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Yoast/javascript.git",
"directory": "packages/helpers"
},
"scripts": {
"test": "jest",
"lint": "eslint .",
"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'\" && cp .babelrc dist/.babelrc"
},
"author": "Yoast",
"license": "GPL-3.0",
"private": false,
"dependencies": {
"@wordpress/i18n": "^1.2.3",
"prop-types": "^15.7.2",
"styled-components": "^2.4.1",
"whatwg-fetch": "1.1.1",
"wicked-good-xpath": "^1.3.0"
},
"peerDependencies": {
"react": "^16.12.0"
},
"jest": {
"testURL": "http://localhost",
"testRegex": ".*Test.js$",
"setupTestFrameworkScriptFile": "<rootDir>/tools/jest/setupTests.js",
"moduleNameMapper": {
"^lodash-es$": "lodash"
}
},
"devDependencies": {
"@yoast/browserslist-config": "^1.2.2",
"browserslist": "^4.7.3",
"jest-styled-components": "^5.0.1",
"react-test-renderer": "^16.8.6"
},
"publishConfig": {
"access": "public"
}
}