forked from kudasak/react-p5
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.8 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.8 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
{
"name": "react-p5",
"version": "1.3.30",
"description": "This Component lets you integrate p5 Sketches into your React App",
"main": "./build/index.js",
"types": "./@types",
"keywords": [
"react",
"p5",
"p5js"
],
"repository": {
"url": "Gherciu/react-p5",
"type": "git"
},
"author": {
"name": "Gherciu Gheorghe",
"email": "gherciu553@gmail.com",
"url": "https://gherciu.github.io/"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/gherciu-gheorghe"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/gherciu-gheorghe"
},
"license": "MIT",
"scripts": {
"build": "rimraf ./build && cross-env NODE_ENV=production webpack",
"watch": "cross-env NODE_ENV=development webpack -w",
"test": "jest",
"postinstall": "opencollective-postinstall || exit 0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"jest": {
"setupFiles": [
"jest-canvas-mock"
]
},
"peerDependencies": {
"react": ">= 17.0.1",
"react-dom": ">= 17.0.1"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"@types/p5": "1.3.3",
"opencollective-postinstall": "2.0.2",
"p5": "1.3.1"
},
"devDependencies": {
"@babel/core": "7.6.2",
"@babel/preset-env": "7.6.2",
"@babel/preset-react": "7.0.0",
"@commitlint/cli": "8.2.0",
"@commitlint/config-conventional": "8.2.0",
"@testing-library/react": "11.2.5",
"babel-loader": "8.0.6",
"cross-env": "6.0.3",
"husky": "3.0.8",
"jest": "26.6.3",
"jest-canvas-mock": "2.3.1",
"react": "16.10.2",
"react-dom": "16.10.2",
"webpack": "4.41.0",
"webpack-cli": "3.3.9"
}
}