-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.35 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.35 KB
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
{
"name": "react-payjp-checkout",
"version": "0.0.1",
"description": "A React component for payjp checkout",
"main": "./lib/payjp_checkout.js",
"repository": "https://github.com/LancersDevTeam/react-payjp-checkout/",
"homepage": "https://github.com/LancersDevTeam/react-payjp-checkout/",
"bugs": "https://github.com/LancersDevTeam/react-payjp-checkout/issues",
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server --config webpack.config.examples.js --progress --color --host 0.0.0.0 --content-base examples/",
"build": "NODE_ENV=production webpack --config webpack.config.js --progress --color",
"build:examples": "NODE_ENV=production ./node_modules/.bin/webpack --config webpack.config.examples.js",
"test": "./node_modules/.bin/jest",
"typecheck": "./node_modules/.bin/flow check --show-all-errors",
"lint": "npm-run-all --parallel lint:src lint:test lint:example",
"lint:fix": "npm-run-all --parallel lint:fix:src lint:fix:test",
"lint:src": "./node_modules/.bin/eslint ./src",
"lint:test": "./node_modules/.bin/eslint ./__test__",
"lint:example": "./node_modules/.bin/eslint ./examples",
"lint:fix:src": "./node_modules/.bin/eslint --fix ./src",
"lint:fix:test": "./node_modules/.bin/eslint --fix ./__test__",
"lint:fix:example": "./node_modules/.bin/eslint --fix ./examples",
"clean": "./node_modules/.bin/rimraf lib",
"prepublish": "npm run clean && npm run build"
},
"authors": [
"Kazuhiko Mori <mori.dev.asdf@gmail.com>"
],
"license": "MIT",
"keywords": [
"react",
"payjp",
"react-component"
],
"engines" : { "node" : ">=7.0.0 <8.1.3" },
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.7.5",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.1",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"deep-equal": "^1.0.1",
"enzyme": "^2.9.1",
"enzyme-to-json": "^1.5.1",
"eslint": "^4.1.1",
"eslint-loader": "^1.8.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-security": "^1.4.0",
"flow-bin": "^0.49.1",
"flow-status-webpack-plugin": "^0.1.7",
"flowtype": "^2.0.0",
"jest": "^20.0.4",
"json-loader": "^0.5.4",
"npm-run-all": "^4.0.2",
"react": "^15.6.1",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"rimraf": "^2.5.2",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.5.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"bower_components",
"shared"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"verbose": true
},
"author": "mori-dev <mori.dev.asdf@gmail.com>"
}