forked from mnkhouri/react-circular-slider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.02 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
61
62
63
64
{
"name": "react-circular-slider-svg",
"version": "0.1.5",
"description": "A circular slider React component",
"keywords": [
"react",
"circular",
"circle",
"round",
"arc",
"slider",
"input",
"svg"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"prepublishOnly": "npm test && npm run build && sleep 3 && (test -z \"$(git status --porcelain)\" || (echo \\\\n\\\\nuntracked changes, exiting! && git status --porcelain && exit 1))",
"postpublish": "PACKAGE_VERSION=$(echo 'const p = require(\"./package.json\"); process.stdout.write(p.version)' | node) && git tag v$PACKAGE_VERSION && git push --tags",
"test": "eslint src/** && prettier --check src/**",
"build": "rm -rf ./dist ./docs/build && prettier --write src/** docs/** && webpack && tsc",
"watch-docs": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/monecchi/react-circular-slider.git"
},
"author": "Marc Khouri <github@khouri.ca>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mnkhouri/react-circular-slider/issues"
},
"homepage": "https://github.com/mnkhouri/react-circular-slider#readme",
"devDependencies": {
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/react-syntax-highlighter": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"husky": "^3.0.5",
"prettier": "^1.18.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-syntax-highlighter": "^11.0.2",
"ts-loader": "^6.1.0",
"typescript": "^3.6.3",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.8",
"webpack-dev-server": "^3.8.0"
},
"peerDependencies": {
"react": ">=15.0.0"
},
"husky": {
"hooks": {
"pre-commit": "STATUS=$(git diff); npm run build && ([ \"$(git diff)\" == \"$STATUS\" ] || (echo 'git status changed!' && exit 1))"
}
}
}