-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
90 lines (90 loc) · 2.48 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "react-memory-game",
"version": "0.0.0-development",
"description": "A memory game engine.",
"main": "dist/index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"commit": "git-cz",
"coverage": "jest --coverage",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"check-coverage": "istanbul check-coverage -statements 25 -branches 25 -functions 25 -lines 25",
"test": "jest --watch",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release",
"prebuild": "rimraf dist",
"build:main": "babel --copy-files --out-dir dist --ignore *.spec.js src",
"build:umd": "webpack --output-filename index.umd.js",
"build:umd.min": "webpack --output-filename index.umd.min.js -p",
"build": "npm-run-all --parallel build:*",
"deploy-surge": "surge demo/build react-memory-game-demo-surge.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/guioconnor/react-memory-game.git"
},
"keywords": [
"memory",
"game",
"gaming",
"engine",
"board",
"pattern",
"children"
],
"files": [
"dist",
"README.md"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/guioconnor/react-memory-game/issues"
},
"homepage": "https://github.com/guioconnor/react-memory-game#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.4.1",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"codecov.io": "^0.1.6",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"ghooks": "^2.0.2",
"istanbul": "^0.4.5",
"jest": "^22.4.2",
"jest-babel": "^1.0.1",
"npm-run-all": "^4.1.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"regenerator-runtime": "^0.11.1",
"rimraf": "^2.6.2",
"semantic-release": "^15.0.2",
"travis-deploy-once": "^4.4.0",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12"
},
"peerDependencies": {
"lodash": "^4.17.5",
"react": "^16.2.0"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"config": {
"ghooks": {
"pre-commit": "yarn coverage && yarn check-coverage"
}
},
"dependencies": {}
}