forked from stripe-archive/react-stripe-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.17 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
{
"name": "react-stripe-elements",
"version": "0.0.2",
"description": "",
"main": "./lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"scripts": {
"test": "node_modules/.bin/jest",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack src/index.js dist/react-stripe-elements.js --config webpack.config.prod.js",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack src/index.js dist/react-stripe-elements.min.js --config webpack.config.prod.js",
"lint": "eslint src demo",
"flow": "flow",
"build": "yarn run lint && yarn run flow && yarn run build:commonjs && yarn run build:es && yarn run build:umd && yarn run build:umd:min",
"clean": "rimraf lib dist es",
"prepublish": "yarn run clean && yarn run build",
"demo": "webpack-dev-server --content-base dist"
},
"keywords": [],
"author": "Stripe (https://www.stripe.com)",
"license": "MIT",
"dependencies": {
"prop-types": "^15.5.8"
},
"repository": {
"type": "git",
"url": "https://github.com/stripe/react-stripe-elements.git"
},
"files": [
"dist",
"lib",
"src",
"es"
],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^4.0.0",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-stripe": "^1.0.10",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-jest": "^19.0.1",
"flow-bin": "^0.44.0",
"html-webpack-plugin": "^2.28.0",
"jest": "^19.0.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.6.1",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.5"
},
"peerDependencies": {
"react": "^15.5.4",
"react-dom": "^15.5.4"
}
}