-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
82 lines (82 loc) · 2.36 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-local-currency",
"version": "1.1.0",
"description": "💶 💷 Shows the price of your services in the customer's currency 💵 💴",
"main": "dist/react-local-currency.js",
"umd:main": "dist/react-local-currency.umd.js",
"module": "dist/react-local-currency.m.js",
"source": "src/index.js",
"files": [
"dist/",
"README.md"
],
"scripts": {
"example": "parcel ./demo/index.html --out-dir example",
"build": "microbundle -o dist/ --sourcemap false --compress false --external url-join urlJoin",
"dev": "microbundle watch -o dist/ --sourcemap false --compress false --external url-join urlJoin",
"eslint": "eslint ./src && eslint ./demo",
"test": "jest",
"coverage": "jest --coverage",
"snapshots": "jest -u",
"prepublishOnly": "npm run build"
},
"dependencies": {
"money": "github:ducdigital/money.js",
"url-join": "^4.0.0"
},
"peerDependencies": {
"react": "16.x"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/demo/",
"/example/",
"/dist/",
"/media/"
],
"automock": false,
"verbose": true,
"testRegex": "\\.test\\.js$",
"testURL": "http://localhost/"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.8.0",
"eslint": "^5.12.1",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"fetch-mock": "^7.3.0",
"jest": "^24.0.0",
"microbundle": "^0.9.0",
"parcel-bundler": "^1.11.0",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"styled-components": "^4.1.3"
},
"author": "Sebastián Lorenzo <SebastianLorenzo@gmail.com>",
"homepage": "",
"license": "MIT",
"repository": "https://github.com/unichat-io/react-local-currency",
"keywords": [
"react-component",
"currency",
"currencies",
"money",
"exchange",
"convert"
]
}