-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.26 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
{
"name": "react-forex-price",
"version": "1.0.0",
"main": "dist/index.js",
"author": "Jason Barry",
"license": "MIT",
"description": "An automatic currency converter and formatter for React",
"keywords": [
"currency",
"conversion",
"convert",
"format",
"price",
"cost",
"exchange rate",
"foreign exchange",
"forex",
"money"
],
"scripts": {
"build": "webpack",
"build:docs": "webpack --config ./docs/webpack.config.js",
"lint": "eslint --ext jsx --ext js ./src/**",
"prettier": "prettier --print-width 120 --single-quote --trailing-comma es5 --write './src/*.{js,jsx}'",
"test": "jest --coverage",
"test:full": "yarn lint && flow && yarn test",
"test:update": "yarn test -u"
},
"lint-staged": {
"src/*.{js,jsx}": [
"yarn prettier",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasonbarry/react-forex-price.git"
},
"bugs": {
"url": "https://github.com/jasonbarry/react-forex-price/issues"
},
"homepage": "https://github.com/jasonbarry/react-forex-price#readme",
"dependencies": {
"local-storage": "^1.4.2",
"unfetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.40",
"@babel/preset-env": "7.0.0-beta.40",
"@babel/preset-flow": "7.0.0-beta.40",
"@babel/preset-react": "7.0.0-beta.40",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "8.2.2",
"babel-jest": "22.4.1",
"babel-loader": "8.0.0-beta.1",
"babel-plugin-react-html-attrs": "2.1.0",
"babel-plugin-transform-class-properties": "6.24.1",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"eslint": "4.18.2",
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-flowtype": "2.46.1",
"eslint-plugin-import": "2.9.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.7.0",
"flow-bin": "0.67.1",
"jest": "22.4.2",
"jest-localstorage-mock": "2.2.0",
"lint-staged": "7.0.0",
"prettier": "1.11.1",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-test-renderer": "16.2.0",
"webpack": "4.1.1",
"webpack-cli": "2.0.9"
},
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
}
}