forked from CurriculumAssociates/createjs-accessibility
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.06 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
{
"name": "@curriculumassociates/createjs-accessibility",
"version": "1.2.2",
"description": "Module to add accessibility support to createjs",
"main": "dist/createjs-accessibility.js",
"scripts": {
"build": "rm -rf dist && NODE_ENV=production webpack",
"lint": "eslint --color src",
"start": "rm -rf dist && NODE_ENV=development webpack",
"start:test-app": "cd test-app && npm i && npm start",
"clobber": "rm -rf node_modules/ && npm cache clean --force",
"test": "jest"
},
"files": [
"README.md",
"src/",
"dist/"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/CurriculumAssociates/createjs-accessibility.git"
},
"keywords": [
"createjs",
"accessibility",
"508",
"wcag",
"aria"
],
"author": {
"name": "Curriculum Associates",
"email": "opensource@cainc.com"
},
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"babel-core": "6.24.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^27.3.1",
"babel-loader": "7.1.4",
"babel-polyfill": "6.23.0",
"babel-preset-es2015": "6.24.0",
"babel-preset-react": "6.24.1",
"createjs-module": "^0.8.3",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-formatter-pretty": "^2.1.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-node": "^0.3.2",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"file-loader": "1.1.11",
"jest": "^27.3.1",
"jest-canvas-mock": "^2.3.1",
"url-loader": "1.0.1",
"webpack": "4.7.0",
"webpack-cli": "3.2.3",
"webpack-node-externals": "1.7.2"
},
"dependencies": {
"@types/jest": "^27.0.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"keycodes-enum": "^0.0.2",
"lodash": "^4.17.19",
"prop-types": "^15.7.2",
"react": "^16.6.3",
"react-dom": "^16.6.3"
}
}