This repository was archived by the owner on Jun 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.76 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.76 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
59
60
61
62
63
64
65
66
67
{
"name": "react-input-numeric",
"version": "1.0.1",
"description": "Better number input for React",
"keywords": [
"react",
"component",
"react-component",
"input",
"number",
"numeric",
"form"
],
"main": "lib/InputNumeric.js",
"author": "Samuel Meuli <dev@samuelmeuli.com>",
"repository": "github:samuelmeuli/react-input-numeric",
"homepage": "https://samuelmeuli.github.io/react-input-numeric",
"license": "MIT",
"scripts": {
"start": "npm-run-all build:rollup --parallel start:*",
"start:rollup": "rollup --config --sourcemap --watch",
"start:storybook": "start-storybook --port 3000 --quiet",
"build": "run-s build:*",
"build:rollup": "rollup --config",
"build:storybook": "build-storybook --output-dir dist",
"lint": "eslint .",
"precommit": "npm run lint",
"prepush": "npm run lint"
},
"dependencies": {
"decimal.js": "^10.0.1",
"prop-types": "^15.6.2"
},
"peerDependencies": {
"react": "^16.3.0"
},
"devDependencies": {
"@dump247/storybook-state": "^1.5.0",
"@storybook/addon-actions": "^3.4.8",
"@storybook/addon-links": "^3.4.8",
"@storybook/addons": "^3.4.8",
"@storybook/react": "^3.4.8",
"autoprefixer": "^8.6.5",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"husky": "^0.14.3",
"node-sass": "^4.9.2",
"npm-run-all": "^4.1.2",
"postcss": "^6.0.23",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-postcss": "^1.6.2"
},
"files": [
"lib/"
]
}