forked from Yoast/YoastSEO.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 2.81 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
{
"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.34.0",
"repository": {
"type": "git",
"url": "https://github.com/Yoast/YoastSEO.js"
},
"scripts": {
"build": "grunt build:js",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"postlint": "grunt check",
"pretest": "grunt build:test",
"test": "jest"
},
"browser": "js/browser.js",
"devDependencies": {
"@types/jest": "^23.0.0",
"@types/node": "^9.3.0",
"autoprefixer": "^8.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": "^3.0.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-yoast": "^1.0.1",
"grunt": "^1.0.1",
"grunt-babel": "^7.0.0",
"grunt-browserify": "^5.0.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^3.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-eslint": "^20.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": "^2.0.0",
"grunt-shell": "^2.0.0",
"grunt-ts": "^5.5.1",
"grunt-tslint": "^5.0.1",
"istanbul": "^0.4.0",
"load-grunt-config": "^0.19.1",
"lodash-cli": "^4.14.1",
"ts-jest": "^22.0.0",
"tslint": "^5.7.0",
"typescript": "^2.4.2"
},
"bugs": {
"url": "https://github.com/Yoast/js-text-analysis/issues"
},
"dependencies": {
"htmlparser2": "^3.9.2",
"jed": "^1.1.0",
"jest": "^23.0.0",
"lodash": "^4.14.1",
"node-sass": "^4.7.2",
"sassdash": "^0.9.0",
"tokenizer2": "^2.0.0"
},
"browserify": {
"transform": [
"babelify"
]
},
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.jsx?$": "<rootDir>/node_modules/babel-jest",
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/spec/.*\\.(ts|tsx|js)$",
"testEnvironment": "jsdom",
"moduleDirectories": [
"node_modules"
],
"testPathIgnorePatterns": [
"/spec/helpers/factory.js",
"/spec/specHelpers/paperChanger.js"
],
"coveragePathIgnorePatterns": [
"js/templates.js"
],
"coverageThreshold": {
"global": {
"branches": 76,
"functions": 77,
"lines": 85,
"statements": 85
}
}
}
}