-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.02 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.02 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
{
"name": "tiny-react-lib",
"version": "2.0.0",
"description": "Re-implementation of React",
"main": "./dist/index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "jest",
"build": "babel src --out-dir dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erenworld/react-implementation.git"
},
"author": "Eren Turkoglu",
"license": "MIT",
"bugs": {
"url": "https://github.com/erenworld/react-implementation/issues"
},
"homepage": "https://github.com/erenworld/react-implementation#readme",
"devDependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"@eslint/js": "^9.28.0",
"babel-jest": "^30.0.0-beta.3",
"eslint": "^9.28.0",
"eslint-plugin-jest": "^28.13.0",
"globals": "^16.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.6.2"
},
"dependencies": {
"uninstall": "^0.0.0"
},
"keywords": [
"react"
]
}