-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
61 lines (61 loc) · 1.94 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
{
"name": "react-poker",
"version": "0.0.76",
"description": "React component for dealing cards",
"main": "dist/react-poker.js",
"scripts": {
"build":
"rm -rf dist/* && webpack -p --env.production --env.platform=web --progress --config webpack.prod.config.js",
"build-site": "npm run build && webpack",
"deploy-site":
"git push origin `git subtree split --prefix site master 2> /dev/null`:gh-pages --force",
"test": "jest --env=jsdom"
},
"repository": {
"type": "git",
"url": "git+https://github.com/therewillbecode/react-deck.git"
},
"keywords": ["react", "deck", "cards", "poker"],
"author": "therewillbecode",
"license": "ISC",
"bugs": {
"url": "https://github.com/therewillbecode/react-deck/issues"
},
"jest": {
"collectCoverageFrom": ["src/**/*.{js,jsx}"],
"setupFiles": ["<rootDir>/config/polyfills.js"],
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](build|docs|node_modules|scripts)[/\\\\]"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": ["[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"],
"moduleNameMapper": {
"^react-native$": "react-native-web"
}
},
"homepage": "http://therewillbecode.github.io/react-poker",
"dependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-motion": "^0.5.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^3.0.0",
"jest": "^20.0.4",
"style-loader": "^0.18.2",
"webpack": "^3.4.1"
}
}