-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
88 lines (88 loc) · 2.6 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
{
"name": "react-orbitjs",
"version": "0.3.5",
"description": "React.js bindings for Orbit.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/exivity/react-orbitjs.git"
},
"keywords": [
"react",
"orbitjs"
],
"author": "Joram van den Boezem <[email protected]>",
"bugs": {
"url": "https://github.com/exivity/react-orbitjs/issues"
},
"homepage": "https://github.com/exivity/react-orbitjs#readme",
"main": "dist/bundle/umd/react-orbitjs.js",
"module": "dist/module/es5/index.js",
"files": [
"index.d.ts",
"src",
"dist"
],
"scripts": {
"build": "yarn build:clean && yarn build:module && yarn build:bundle",
"build:clean": "rimraf dist && rimraf example/build",
"build:module": "babel src -d dist/module/es5",
"build:bundle": "webpack --config webpack.bundle.config.js",
"build:docs": "webpack --config webpack.docs.config.js && rimraf docs/dist/main.bundle.js.map",
"publishDocs": "yarn build:docs && git add . && git commit -m \"docs: update\" && git subtree push --prefix docs/dist origin gh-pages",
"prepublishOnly": "yarn test && yarn build",
"start": "webpack-dev-server --config webpack.docs.config.js",
"test": "jest",
"watch": "jest --watch"
},
"devDependencies": {
"@babel/cli": "7.25.9",
"@babel/core": "7.26.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"@orbit/data": "0.17.0",
"@orbit/memory": "0.17.2",
"@orbit/records": "0.17.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/react": "18.3.12",
"babel-jest": "29.7.0",
"babel-loader": "9.2.1",
"codecov": "3.8.3",
"copy-webpack-plugin": "12.0.2",
"html-webpack-plugin": "5.6.3",
"jest": "29.7.0",
"luxon": "3.5.0",
"raw-loader": "4.0.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-syntax-highlighter": "15.6.1",
"react-test-renderer": "18.3.1",
"rimraf": "6.0.1",
"webpack": "5.96.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.1.0"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.2",
"prop-types": "^15.6.0"
},
"peerDependencies": {
"@orbit/data": "^0.16.0 || ^0.17.0",
"@orbit/memory": "^0.16.0 || ^0.17.0",
"react": ">=16"
},
"jest": {
"testMatch": [
"**/__tests__/*.js"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"browserslist": "> 0.25%, not dead"
}