-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 880 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 880 Bytes
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
{
"name": "react-remove-props-loader",
"version": "1.2.18",
"description": "Webpack loader for removing React props or JSX attributes in TypeScript/JavaScript code.",
"main": "dist/index",
"repository": "https://github.com/Mercateo/react-remove-props-loader.git",
"author": "Fawad Ali <m.fawaadali98@gmail.com>",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && tsc",
"dev": "yarn build --sourceMap true --watch",
"test": "jest",
"test:coverage": "yarn test --collectCoverage",
"prepublishOnly": "yarn build"
},
"dependencies": {
"ts-morph": "^27.0.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"webpack": "^5.105.3"
},
"peerDependencies": {
"webpack": ">=5.0.0"
}
}