-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
71 lines (71 loc) · 1.8 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
{
"name": "react-currency-formatter",
"version": "1.1.0",
"description": "react currency formatter Component",
"keywords": [
"currency",
"formatter",
"react-component"
],
"license": "MIT",
"author": "Jose Miguel Bejarano",
"files": [
"dist"
],
"main": "dist/react-currency-formatter.cjs.js",
"module": "dist/react-currency-formatter.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/xDae/react-currency-formatter.git"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"build-storybook": "build-storybook",
"dev": "rollup -c -w",
"storybook": "start-storybook -p 6006",
"pretest": "npm run build",
"test": "jest",
"test:watch": "jest --watch"
},
"browser": "dist/react-currency-formatter.umd.js",
"dependencies": {
"prop-types": "^15.6.0"
},
"devDependencies": {
"@storybook/addon-actions": "^3.3.3",
"@storybook/addon-info": "^3.3.3",
"@storybook/addon-knobs": "^3.3.3",
"@storybook/addon-links": "^3.3.3",
"@storybook/react": "^3.3.3",
"babel-core": "^6.26.0",
"babel-jest": "^22.0.4",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.0.4",
"lodash.values": "^4.3.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"regenerator-runtime": "^0.11.1",
"rimraf": "^2.6.2",
"rollup": "^0.53.2",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0"
},
"peerDependencies": {
"react": "16.x"
},
"jest": {
"moduleFileExtensions": [
"jsx",
"js",
"json"
],
"testPathIgnorePatterns": [
"<rootDir>/(dist|docs|node_modules)/"
]
}
}