-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.07 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
{
"name": "image-kernels",
"version": "1.0.0",
"description": "Playing around with filters",
"main": "index.js",
"scripts": {
"start": "webpack --watch & http-server ./dist",
"test": "jest",
"test-ci": "jest --ci --runInBand --collectCoverage"
},
"author": "Jason Miller, <[email protected]>",
"license": "UNLICENSED",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@types/copy-webpack-plugin": "^5.0.0",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.3",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"http-server": "^0.12.1",
"jest": "^25.1.0",
"jest-canvas-mock": "^2.2.0",
"jest-environment-jsdom-fifteen": "^1.0.2",
"prettier": "^2.0.2",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.2",
"ts-node": "^8.8.1",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"canvas": "^2.6.1"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"jest": {
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"setupFiles": [
"jest-canvas-mock"
],
"testEnvironment": "jest-environment-jsdom-fifteen"
},
"prettier": {
"singleQuote": false,
"trailingComma": "all",
"semi": false,
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"bracketSpacing": true
}
}