forked from pmella16/react-native-stripe-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.4 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
{
"name": "react-native-stripe-api",
"version": "0.0.5",
"description": "A small React Native library for Stripe Rest API",
"main": "src/Stripe.js",
"scripts": {
"lint": "eslint .",
"flow": "flow",
"test": "jest --verbose",
"check": "npm run lint && npm run flow && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xcarpentier/react-native-stripe-api.git"
},
"keywords": [
"react-native",
"Stripe"
],
"author": "Xavier Carpentier <contact@xaviercarpentier.com> (http://xaviercarpentier.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/xcarpentier/react-native-stripe-api/issues"
},
"homepage": "https://github.com/xcarpentier/react-native-stripe-api#readme",
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"packager/react-packager/src/Activity/"
],
"testFileExtensions": [
"js"
],
"unmockedModulePathPatterns": [
"promise",
"source-map"
]
},
"devDependencies": {
"babel-core": "6.9.1",
"babel-eslint": "6.0.4",
"babel-jest": "12.1.0",
"babel-polyfill": "6.9.1",
"babel-preset-react-native": "1.9.0",
"eslint": "2.13.0",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-import": "1.8.1",
"eslint-plugin-jsx-a11y": "1.5.3",
"eslint-plugin-react": "5.2.2",
"flow-bin": "0.25.0",
"jest-cli": "12.1.1"
}
}