-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.81 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
44
45
46
47
48
49
50
51
{
"name": "react-shapeshifter",
"version": "1.0.31",
"description": "React component that composes various commonly used button shapes from three lines",
"main": "lib/index.js",
"types": "index.d.ts",
"scripts": {
"build": "npm run build:transpile",
"build:transpile": "babel src --out-dir lib",
"clean": "rimraf lib/** dist/** docs/ghpages *.tgz examples/**/bundle.js",
"dist": "npm run dist:dev && npm run dist:prod",
"dist:dev": "webpack --config webpack.build.js --mode development",
"dist:prod": "NODE_ENV=production webpack --config webpack.build.js --mode production",
"gh-pages": "webpack --mode production && cpx 'examples/basic/*' docs/ghpages && rimraf docs/ghpages/*.jsx && gh-pages -d docs/ghpages && rimraf node_modules/gh-pages/.cache",
"lint": "standard",
"prepare": "npm run clean && npm run build",
"start": "webpack serve",
"test": "exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ntamas/react-shapeshifter.git"
},
"author": "Tamas Nepusz <ntamas@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ntamas/react-shapeshifter/issues"
},
"homepage": "https://github.com/ntamas/react-shapeshifter#readme",
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"@types/react": "^19.2.6",
"babel-loader": "^10.0.0",
"cpx2": "^8.0.0",
"gh-pages": "^6.3.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"rimraf": "^6.1.2",
"standard": "^17.1.2",
"webpack": "^5.103.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"peerDependencies": {
"react": "^15.6.0 || ^16 || ^17 || ^18 || ^19"
}
}