-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
66 lines (66 loc) · 1.72 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
{
"name": "react-number-input",
"version": "15.5.0",
"description": "<input /> for numbers, currency and other important numbers",
"main": "dist/index.js",
"author": "hongymagic",
"repository": {
"type": "git",
"url": "git@github.com:hongymagic/react-number-input.git"
},
"bugs": {
"mail": "davidhong.code@gmail.com",
"url": "https://github.com/hongymagic/react-number-input/issues"
},
"license": "MIT",
"keywords": [
"react",
"react-component",
"input",
"number",
"currency"
],
"scripts": {
"build": "babel index.js -d dist",
"flow": "flow",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
},
"dependencies": {
"babel-jest": "^19.0.0",
"babel-polyfill": "^6.23.0",
"numbro": "^1.10.1"
},
"peerDependencies": {
"react": "^0.14 || ^15.0.0-rc || ^15.0 || ^16",
"react-dom": "^0.14 || ^15.0.0-rc || ^15.0 || ^16"
},
"devDependencies": {
"@storybook/react": "^3.3.15",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-remove-comments": "^2.0.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-latest": "^6.24.0",
"babel-preset-react": "^6.23.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"flow-bin": "^0.69.0",
"husky": "^0.13.3",
"jest": "^22.4.3",
"lint-staged": "^3.4.0",
"prettier": "^0.22.0",
"react": "^16.3.0",
"react-dom": "^16.3.0"
}
}