This repository has been archived by the owner on Dec 20, 2023. It is now read-only.
forked from tjallen/react-simple-range
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.35 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "react-simple-range",
"version": "0.0.0-semantically-release",
"description": "A simple React component to input a number between a min and a max value using a slider",
"keywords": [
"react",
"react-component",
"input",
"range",
"slider",
"number"
],
"tags": [
"react",
"input",
"range"
],
"main": "./lib/index.js",
"author": {
"name": "Thom Allen",
"url": "https://github.com/tjallen"
},
"license": "ISC",
"homepage": "https://github.com/tjallen/react-simple-range",
"repository": {
"type": "git",
"url": "https://github.com/tjallen/react-simple-range.git"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.4.1",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-polyfill": "^6.13.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.11.1",
"commitizen": "^2.9.6",
"cross-env": "^2.0.1",
"cz-conventional-changelog": "^1.2.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"expect": "^1.20.2",
"expect-jsx": "^5.0.0",
"html-webpack-plugin": "^2.22.0",
"husky": "^0.13.4",
"mocha": "^3.0.2",
"prop-types": "^15.6.0",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"semantic-release": "^8.2.0",
"webpack": "^1.15.0",
"webpack-dev-server": "^1.16.5"
},
"peerDependencies": {
"react": "^15.5.4 || ^16.0.0"
},
"scripts": {
"test": "mocha",
"test:watch": "mocha --watch",
"start": "webpack-dev-server --inline --hot --colors",
"build:examples": "webpack --config webpack.config-buildexamples.babel.js -p",
"libmin": "cross-env NODE_ENV=production webpack --config webpack.config-publish.babel.js",
"lib": "webpack --config webpack.config-publish.babel.js",
"pub": "npm run lib && npm publish",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"commit": "git cz",
"precommit": "npm run test",
"packdry": "npm run lib && npm pack",
"lint": "eslint src test"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"files": [
"lib/index.js"
]
}