forked from Yoast/YoastSEO.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 2.83 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
{
"name": "yoastseo",
"description": "Yoast clientside page analysis",
"homepage": "https://github.com/Yoast/",
"keywords": [
"Yoast",
"SEO",
"text analysis"
],
"main": "index.js",
"license": "GPL-3.0",
"version": "1.48.0",
"repository": {
"type": "git",
"url": "https://github.com/Yoast/YoastSEO.js"
},
"scripts": {
"start": "npm start --prefix examples/webpack",
"build": "grunt publish",
"lint": "grunt check",
"test": "jest"
},
"browser": "js/browser.js",
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"autoprefixer": "^9.0.0",
"babel-cli": "^6.16.0",
"babel-core": "^6.26.0",
"babel-jest": "^23.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.16.0",
"babel-register": "^6.16.3",
"babelify": "^8.0.0",
"console.table": "^0.10.0",
"eslint-config-yoast": "^5.0.1",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-yoast": "^1.0.1",
"grunt": "^1.0.1",
"grunt-babel": "^7.0.0",
"grunt-browserify": "^5.0.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-eslint": "^21.0.0",
"grunt-exorcise": "^2.1.1",
"grunt-po2json": "git+https://github.com/atimmer/grunt-po2json.git#f26c05653af89ef0f7a72456dbe141eb56bf5471",
"grunt-postcss": "^0.9.0",
"grunt-sass": "^3.0.0",
"grunt-shell": "^2.0.0",
"istanbul": "^0.4.0",
"jest": "^23.5.0",
"js-yaml": "^3.12.1",
"load-grunt-config": "^1.0.0",
"lodash-cli": "^4.14.1",
"node-sass": "^4.9.3"
},
"bugs": {
"url": "https://github.com/Yoast/js-text-analysis/issues"
},
"dependencies": {
"@wordpress/autop": "^2.0.2",
"htmlparser2": "^3.9.2",
"jed": "^1.1.0",
"lodash-es": "^4.17.10",
"loglevel": "^1.6.1",
"parse5": "^5.1.0",
"sassdash": "0.9.0",
"tokenizer2": "^2.0.1"
},
"browserify": {
"transform": [
"babelify"
]
},
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"js"
],
"transform": {
"^.+\\.jsx?$": "<rootDir>/node_modules/babel-jest",
"^.+\\.html$": "<rootDir>/spec/specHelpers/rawLoader"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!lodash-es/.*)",
"<rootDir>/spec/fullTextTests/testText/*/*\\.html"
],
"testRegex": "/spec/.*\\.(js)$",
"testEnvironment": "node",
"moduleDirectories": [
"node_modules"
],
"testPathIgnorePatterns": [
"/spec/specHelpers/*",
"/spec/fullTextTests/testTexts"
],
"coveragePathIgnorePatterns": [
"js/templates.js"
],
"coverageThreshold": {
"global": {
"branches": 74,
"functions": 78,
"lines": 83,
"statements": 83
}
}
}
}