This repository has been archived by the owner on Jan 23, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
65 lines (65 loc) · 1.58 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
{
"name": "braintree-react",
"version": "3.3.0",
"description": "A React component for Braintree Drop-In",
"main": "index.js",
"scripts": {
"pretest": "standard",
"test": "jest",
"preexample": "browserify -t reactify example/app.js > example/dist.js",
"example": "echo 'Visit localhost:8000/example .' && python -m SimpleHTTPServer"
},
"author": "Braintree <code@braintreepayments.com>",
"repository": {
"type": "git",
"url": "git://github.com/jeffcarp/braintree-react.git"
},
"license": "ISC",
"keywords": [
"braintree",
"payment",
"credit card form",
"react-component"
],
"dependencies": {
"react": "^15.1.0",
"react-dom": "^15.1.0"
},
"devDependencies": {
"babel-jest": "^12.1.0",
"babel-preset-es2015": "*",
"babel-preset-react": "*",
"braintree-web": "^2.9.0",
"browserify": "^12.0.1",
"express": "^4.11.2",
"jest-cli": "^12.1.1",
"react-addons-test-utils": "^15.1.0",
"reactify": "^1.1.1",
"standard": "^7.0.1"
},
"jest": {
"testDirectoryName": "test",
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/fbjs"
],
"modulePathIgnorePatterns": [
"<rootDir>/node_modules/"
]
},
"standard": {
"globals": [
"jest",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"describe",
"expect"
]
}
}