-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
119 lines (119 loc) · 2.71 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "react-matter-js",
"version": "0.1.0",
"main": "dist/index.js",
"module": "dist/rmjs.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"package": "node scripts/copyPackage.js",
"prestart": "yarn package",
"start": "tsdx watch",
"postbuild": "yarn package",
"build": "tsdx build",
"test": "tsdx test --env=jsdom --passWithNoTests",
"test:prod": "yarn test --coverage",
"lint": "tsdx lint",
"tsc": "tsc",
"preyalc": "yarn build",
"yalc": "yalc publish dist"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"devDependencies": {
"@testing-library/react": "^11.0.2",
"@types/jest": "^26.0.0",
"@types/node-sass": "^4.11.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"coveralls": "^3.0.9",
"eslint-plugin-import": "^2.20.1",
"husky": "^6.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rollup-plugin-postcss": "^3.1.1",
"rollup-plugin-scss": "^2.1.0",
"semantic-release": "^17.0.4",
"tsdx": "^0.14.0",
"tslib": "^2.0.0",
"typescript": "^4.0.2",
"yalc": "^1.0.0-pre.35"
},
"dependencies": {
"@emotion/core": "^11.0.0",
"@react-hook/window-size": "^3.0.6",
"@types/gyronorm": "^2.0.0",
"@types/matter-js": "^0.14.2",
"emotion": "^11.0.0",
"gyronorm": "^2.0.6",
"immer": "^9.0.1",
"matter-js": "^0.17.0",
"pathseg": "^1.2.0",
"poly-decomp": "^0.3.0",
"src": "^1.1.2",
"svgpath": "^2.2.3",
"tuplerone": "^3.4.0-beta.6",
"use-callback-ref": "^1.2.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/slikts/react-matter-js.git"
},
"keywords": [
"physics-engine",
"react",
"matter-js"
],
"author": "slikts <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/slikts/react-matter-js/issues"
},
"homepage": "https://github.com/slikts/react-matter-js#readme",
"description": "React adapter for the Matter.js physics engine",
"eslintConfig": {
"extends": [
"react-app",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"settings": {
"react": {
"version": "detect"
}
}
},
"jest": {
"globals": {
"ts-jest": {
"diagnostics": false
}
}
}
}