-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.43 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
{
"name": "connect4",
"version": "1.0.1",
"description": "Connect4 game with Exponent!",
"main": "main.js",
"author": "Sergio Cruz <[email protected]>",
"scripts": {
"test": "jest"
},
"dependencies": {
"react-native": "exponentjs/react-native#2016-01-19"
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"jest-cli": "^0.8.2"
},
"jest": {
"collectCoverage": true,
"collectCoverageOnlyFrom": {
"components/connect4/lib/board.js": true,
"components/connect4/lib/match-diagonal.js": true,
"components/connect4/lib/match-horizontal.js": true,
"components/connect4/lib/match-vertical.js": true,
"components/connect4/lib/matches.js": true
},
"scriptPreprocessor": "<rootDir>/babel-preprocessor",
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js"
],
"unmockedModulePathPatterns": [
"react"
],
"preprocessCachingDisabled": true
},
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sergiocruz/react-native-connect4.git"
},
"engines": {
"node": "4.1.x",
"npm": "2.14.x"
},
"exp": {
"name": "Connect4 Game",
"primaryColor": "#006987",
"iconUrl": "https://raw.githubusercontent.com/sergiocruz/react-native-connect4/master/assets/connect4-icon.png"
}
}