-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.3 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
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
{
"name": "@magica11y/cauldron",
"homepage": "https://magica11y.github.io/magica11y",
"version": "2.1.3",
"description": "The shared core and build system behind Magica11y",
"module": "lib/index.js",
"main": "lib/index.js",
"browser": "dist/magica11y.cauldron.js",
"scripts": {
"clean": "./build/clean.sh",
"lint": "./build/lint.sh",
"typecheck": "./build/typecheck.sh",
"test": "./build/test.sh",
"coverage": "./build/coverage.sh",
"build": "./build/build.sh",
"version:patch": "./build/version.sh patch",
"version:minor": "./build/version.sh minor",
"version:major": "./build/version.sh major",
"release": "./build/release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/magica11y/cauldron.git"
},
"keywords": [
"a11y",
"accessibility",
"css",
"media-query",
"level-5",
"matchmedia",
"prefers-reduced-motion",
"light-level",
"environment-blending",
"inverted-colors",
"prefers-reduced-transparency",
"prefers-contrast",
"prefers-color-scheme",
"forced-colors"
],
"engines": {
"node": ">=10",
"npm": ">=6"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"author": {
"name": "Rishabh Rao",
"email": "rishabhsrao@gmail.com",
"url": "https://medium.com/@rishabhsrao"
},
"files": [
".eslintignore",
".eslintrc.js",
".yarnrc",
"babel.config.js",
"build",
"dist",
"flow-typed",
"jest.config.js",
"lib",
"prettier.config.js",
"webpack.config.js"
],
"dependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.16.8",
"@babel/preset-flow": "^7.14.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.3",
"coveralls-next": "^4.2.0",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-flowtype": "^5.8.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"flow-bin": "^0.154.0",
"flow-copy-source": "^2.0.9",
"flow-typed": "^3.7.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"webpack": "^5.94.0",
"webpack-cli": "^4.9.2"
}
}