This repository was archived by the owner on Jun 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.72 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.72 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
52
53
54
55
56
57
58
{
"name": "react-adjustable-gauge",
"version": "1.0.4",
"description": "An adjustable radial gauge component with configurable range and number of gauges",
"main": "dist/react-adjustable-gauge.js",
"jsnext:main": "dist/index.js",
"module": "dist/index.js",
"browser": "dist/react-adjustable-gauge.js",
"scripts": {
"test": "echo \"Error: nothing to test at the moment\"",
"lint": "eslint src/",
"build": "npm run clean:build && npm run build:dev && npm run build:prod && npm run build:babel",
"build:babel": "babel -d dist/ src/",
"build:prod": "NODE_ENV=production webpack -p",
"build:dev": "webpack",
"clean:build": "rimraf dist && rimraf example/dist"
},
"repository": "github:therealtbs/react-adjustable-gauge",
"files": [
"dist/"
],
"author": "Tobias Westfeld <tobias.westfeld@eshaker.de>",
"license": "MIT",
"dependencies": {
"d3-ease": "^1.0.3",
"konva": "^1.7.6",
"lodash": "^4.17.4",
"react-konva": "^1.6.5",
"react-move": "^2.0.0",
"text-width": "^1.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.7.1",
"eslint-config-eshaker": "^1.2.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"html-webpack-plugin": "^2.30.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rimraf": "^2.6.2",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.2"
},
"peerDependencies": {
"react": "^16.2.0",
"prop-types": "^15.6.0"
},
"eslintConfig": {
"extends": "eshaker/lib"
}
}