forked from instructure/tinymce-a11y-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.73 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
{
"name": "tinymce-a11y-checker",
"version": "1.11.0",
"description": "An accessibility checker plugin for TinyMCE.",
"main": "lib/plugin.js",
"module": "lib/modules/plugin.js",
"scripts": {
"test": "jest src",
"test:all": "npm run test && npm run cypress:run",
"test:coverage": "jest src --coverage",
"test-watch": "jest --watch src",
"cypress:ci": "start-server-and-test start http://localhost:8080 cypress:run",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"start": "webpack-dev-server --open",
"extract": "format-message extract --generate-id underscored_crc32 \"src/**/*.js\" > locales/en.json",
"fmt": "prettier --no-semi --write \"src/**/*.js\"",
"fmt-check": "prettier --no-semi -l \"src/**/*.js\"",
"build": "scripts/build",
"build:demo": "webpack",
"prepublish": "npm run build"
},
"keywords": [
"tinymce",
"accessibility",
"plugin",
"a11y"
],
"author": "Brent Burgoyne",
"license": "MIT",
"devDependencies": {
"@instructure/ui-presets": "^5 || rc",
"babel-cli": "^6.26.0",
"babel-core": "^6.25.0",
"babel-jest": "^23",
"babel-loader": "^7.1.1",
"canvas-rce": "^4",
"cypress": "^3",
"enzyme": "^3",
"enzyme-adapter-react-16": "^1.0.0",
"enzyme-to-json": "^3.0.1",
"format-message-cli": "^6",
"jest": "^23",
"jest-canvas-mock": "^1.1.0",
"moxios": "^0.4.0",
"mutation-observer": "^1.0.3",
"prettier": "^1.7.3",
"quiz-presets": "^5",
"react": "^16",
"react-dom": "^16",
"start-server-and-test": "^1.7.11",
"webpack": "^4",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3"
},
"dependencies": {
"@instructure/ui-buttons": "^5 || rc",
"@instructure/ui-core": "^5 || rc",
"@instructure/ui-elements": "^5 || rc",
"@instructure/ui-forms": "^5 || rc",
"@instructure/ui-icons": "^5 || rc",
"@instructure/ui-overlays": "^5 || rc",
"@instructure/ui-themes": "^5 || rc",
"axios": "^0.18.0",
"bloody-offset": "^0.0.0",
"format-message": "^6",
"format-message-generate-id": "^6",
"prevent-default": "^1.0.0",
"react": "^0.14.8 || ^15.0.0 || ^16",
"react-aria-live": "^1.0.4",
"react-color": "^2.13.4",
"react-dom": "^0.14.8 || ^15.0.0 || ^16",
"wcag-element-contrast": "^1.0.1"
},
"jest": {
"setupFiles": [
"./jest-setup.js",
"jest-canvas-mock"
],
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"placeholder-svg.js"
],
"coverageThreshold": {
"global": {
"branches": 85,
"functions": 90,
"lines": 90,
"statements": 90
}
}
}
}