This repository has been archived by the owner on May 25, 2023. It is now read-only.
forked from amaroteam/react-credit-cards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
138 lines (138 loc) · 4.28 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "react-credit-cards",
"version": "1.1.0",
"description": "Beautiful credit cards for your payment forms",
"author": "AMARO Fashion <it@amaro.com>",
"contributors": [
{
"name": "Cassio Cardoso",
"email": "cassio.cardoso@amaro.com"
},
{
"name": "Gil Barbara",
"email": "gil.barbara@amaro.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/nrccua/react-credit-cards.git"
},
"bugs": {
"url": "https://github.com/nrccua/react-credit-cards/issues"
},
"homepage": "https://github.com/nrccua/react-credit-cards#readme",
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"es",
"lib",
"src"
],
"keywords": [
"react",
"react-component",
"credit card",
"payment"
],
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"prop-types": "^15.6.0"
},
"dependencies": {
"build": "^0.1.4",
"npm": "^6.0.0",
"payment": "^2.3.0",
"run": "^1.4.0"
},
"devDependencies": {
"autoprefixer": "^7.2.1",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"browser-sync": "^2.18.13",
"browser-sync-webpack-plugin": "^1.2.0",
"chalk": "^2.3.0",
"clean-webpack-plugin": "^0.1.17",
"copy-webpack-plugin": "^4.2.3",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"date-fns": "^1.29.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^4.12.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-loader": "^1.9.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"flow-bin": "^0.60.1",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"image-webpack-loader": "^3.4.2",
"jest-cli": "^21.2.1",
"jsdom": "^11.5.1",
"node-sass": "^4.7.2",
"normalize.css": "^7.0.0",
"postcss": "^6.0.14",
"postcss-cli": "^4.1.1",
"postcss-loader": "^2.0.9",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.1.3",
"react-test-renderer": "^16.2.0",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"source-map-support": "^0.5.0",
"style-loader": "^0.19.0",
"stylelint": "^8.3.1",
"stylelint-config-standard": "^18.0.0",
"stylelint-declaration-strict-value": "^1.0.4",
"stylelint-order": "^0.8.0",
"stylelint-scss": "^2.2.0",
"watch-run": "^1.2.5",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7",
"webpack-merge": "^4.1.1",
"webpack-node-externals": "^1.6.0",
"yargs": "^10.0.3"
},
"scripts": {
"build": "npm run clean && npm run build:commonjs && npm run build:es && npm run build:styles",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src -d lib",
"build:es": "cross-env NODE_ENV=production babel src -d es",
"build:styles": "node tasks build-styles",
"watch": "npm run build && watch-run -p 'src/**/*.js' npm run build:es",
"clean": "rimraf es && rimraf lib",
"start": "node demo/config/webpack.server.js",
"build:demo": "cross-env NODE_ENV=production webpack --config demo/config/webpack.build.js",
"analyze": "NODE_ENV=production webpack --config config/webpack.build.js --profile --json > webpack.stats.json",
"lint": "eslint --ext .js --ext .jsx src test tasks",
"lint:styles": "stylelint 'src/**/*.scss'",
"test": "jest --coverage",
"test:watch": "jest --watch",
"precommit": "node tasks commits && npm run lint && npm run lint:styles && npm test",
"postmerge": "node tasks update && npm update",
"prepublishOnly": "npm run build"
},
"browserslist": [
"last 2 versions",
"safari >= 8",
"ios > 8"
]
}