-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.3 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-format-currency",
"version": " v0.1.2",
"description": "React component to format currency in an input or as a text field",
"main": "./build/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/apoca/react-format-currency.git"
},
"author": {
"name": "Miguel Vieira",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"mail": "[email protected]",
"url": "https://github.com/apoca/react-format-currency/issues"
},
"keywords": [
"react-component",
"react",
"currency",
"input",
"number",
"number-format",
"mask"
],
"homepage": "https://github.com/apoca/react-format-currency#readme",
"scripts": {
"test": "jest",
"start": "webpack --watch",
"build": "rm -rf ./build && webpack",
"test:lint": "eslint ./src --ext .jsx --ext .js",
"test:ci": "npm run test:lint && npm run build && npm run test"
},
"prepush": {
"run": [
"test",
"test:lint"
],
"silent": true
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^2.7.0",
"eslint-plugin-react": "^7.11.1",
"expect": "^21.2.1",
"jest": "^21.2.1",
"prettier-eslint": "^8.8.2",
"react-test-renderer": "^16.5.2",
"sinon": "^4.5.0",
"webpack": "^3.12.0",
"webpack-dashboard": "^2.0.0",
"webpack-dev-server": "^2.11.3"
},
"peerDependencies": {
"react": "^15.0.0-rc || ^15.0.0 || ^16.0.0-rc || ^16.2.0",
"react-dom": "^15.0.0-rc || ^15.0.0 || ^16.0.0-rc || ^16.2.0"
},
"dependencies": {
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-intl": "^2.7.1",
"utf8": "^3.0.0"
}
}