-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
58 lines (58 loc) · 1.52 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
{
"name": "react-native-cardstack",
"version": "1.0.1",
"description": "react native component inspired by the iOS passbook app UI",
"main": "dist/index.js",
"keywords": [
"update",
"react-native",
"react-component",
"button",
"code-push",
"CodePush",
"prompt",
"manual-update",
"ui"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cameronbourke/react-native-cardstack.git"
},
"bugs": {
"url": "https://github.com/cameronbourke/react-native-cardstack/issues"
},
"scripts": {
"start": "npm run compile:dev",
"start:ios": "node CardStackDemo/node_modules/react-native/local-cli/cli.js start",
"compile:dist": "babel src --out-dir dist",
"compile:dev": "babel src -w --out-dir CardStackDemo/react-native-cardstack",
"release": "npm version 1.0.0 && git push && git push --tags && npm publish",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"files": [
"dist"
],
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/CardStackDemo/react-native-cardstack"
],
"testRegex": "(src/.*(test|spec))\\.jsx?$"
},
"author": "Cameron Bourke <[email protected]> (http://cameronbourke.com/)",
"license": "MIT",
"peerDependencies": {
"react": ">=15.0.0"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-react": "6.16.0",
"react": "15.4.2"
},
"dependencies": {
"babel-jest": "^18.0.0"
}
}