-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "omniaural",
"version": "1.6.1",
"description": "A lightweight global state manager",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"prepare": "yarn build",
"test": "jest",
"build": "rm -rf dist && mkdir dist && babel ./src -d dist --copy-files && mv dist/OmniAural.js dist/index.js"
},
"author": "Creon Creonopoulos",
"contributors": [
"Chris Steele"
],
"repository": {
"type": "git",
"url": "https://github.com/kreonjr/omniaural.git"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-flow-strip-types": "^7.22.5",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"babel-jest": "^29.6.2",
"husky": "^8.0.3",
"jest": "^29.6.2",
"node-fetch": "^2.6.2",
"react": "^18.2.0",
"react-test-renderer": "^18.2.0"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"resolutions": {
"minimatch": ">=3.0.5",
"semver": ">=6.3.1"
}
}