-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
60 lines (60 loc) · 2.19 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
{
"name": "react-svg-gauge",
"version": "1.0.10",
"description": "Justgage inspired .svg gauge for React",
"author": "Tim de Koning",
"user": "Reggino",
"main": "lib/Gauge.js",
"license": "MIT",
"keywords": [
"react-component",
"react",
"svg",
"gauge"
],
"devDependencies": {
"@babel/core": "^7.23.2",
"@types/react": "^18.2.33",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^9.1.3",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^8.52.0",
"eslint-config-kingsquare": "^7.1.0",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"eslintConfig": {
"extends": "kingsquare"
},
"scripts": {
"example": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode=development --content-base example/ --config ./example/webpack.example.config.js",
"gh-pages": "node ./node_modules/webpack/bin/webpack.js --content-base example/ --config ./example/webpack.example.config.js; cp ./example/index.html /tmp/index.html; cp ./example/bundle.js /tmp/bundle.js; git checkout gh-pages; cp /tmp/index.html ./index.html; cp /tmp/bundle.js ./bundle.js; git commit -a -m 'Automatic Example Update'; git push origin gh-pages; git checkout master;",
"build": "./node_modules/.bin/tsc --jsx react --esModuleInterop --outdir lib/ --declaration ./src/Gauge.tsx",
"prepublishOnly": "./node_modules/.bin/tsc --jsx react --esModuleInterop --outdir lib/ --declaration ./src/Gauge.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Reggino/react-svg-gauge.git"
},
"bugs": {
"url": "https://github.com/Reggino/react-svg-gauge/issues"
},
"homepage": "https://github.com/Reggino/react-svg-gauge#readme",
"types": "./lib/Gauge.d.ts"
}