-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
100 lines (100 loc) · 2.85 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
{
"name": "@curriculumassociates/createjs-accessibility",
"version": "1.5.2",
"description": "Module to add accessibility support to createjs",
"main": "dist/createjs-accessibility.js",
"scripts": {
"clobber": "rm -rf node_modules/ && npm cache clean --force",
"build": "rm -rf dist && NODE_ENV=production webpack",
"lint": "eslint --color src",
"lint:fix": "eslint --color src --fix",
"pre-commit": "lint-staged",
"prettier": "prettier './{src,test-app}/**/*.{js,test.js,ts,tsx}' --check",
"prettier:fix": "prettier './{src,test-app}/**/*.{js,test.js,ts,tsx}' --write",
"start": "rm -rf dist && NODE_ENV=development webpack",
"start:test-app": "cd test-app && npm i && npm start",
"test": "jest"
},
"pre-commit": [
"pre-commit"
],
"lint-staged": {
"src/**/*.(js|ts|tsx)": [
"npm run lint:fix",
"prettier --write"
]
},
"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": "[email protected]"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/createjs": "0.0.29",
"@types/eslint": "^8.4.5",
"@types/jest": "^27.5.2",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.2",
"babel-jest": "^28.1.3",
"babel-loader": "^8.2.5",
"babel-polyfill": "6.23.0",
"babel-preset-es2015": "6.24.0",
"createjs-module": "^0.8.3",
"enzyme": "^3.11.0",
"eslint": "^8.22.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-formatter-pretty": "^2.1.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-node": "^0.3.2",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-webpack-plugin": "^3.2.0",
"file-loader": "^6.2.0",
"jest": "^28.1.3",
"jest-canvas-mock": "^2.3.1",
"jest-environment-jsdom": "^29.2.1",
"lint-staged": "^13.2.1",
"pre-commit": "^1.2.2",
"prettier": "2.6.2",
"source-map-loader": "^4.0.0",
"ts-jest": "^28.0.8",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"url-loader": "^4.1.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@types/lodash": "^4.14.183",
"keycodes-enum": "^0.0.2",
"lodash": "^4.17.19",
"treeverse": "^3.0.0"
}
}