-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.49 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": "guess-the-number",
"version": "1.0.0",
"description": "a simple number guessing game",
"main": "index.js",
"scripts": {
"build": "npm run test && webpack",
"start": "webpack-dev-server --hot --inline",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ppalladino/guess-the-number.git"
},
"keywords": [
"guess",
"number",
"game"
],
"author": "Paul Palladino",
"license": "MIT",
"bugs": {
"url": "https://github.com/ppalladino/guess-the-number/issues"
},
"homepage": "https://github.com/ppalladino/guess-the-number#readme",
"jest": {
"testDirectoryName": "src",
"testFileExtensions": [
"spec.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"unmockedModulePathPatterns": [
"./node_modules/react"
]
},
"devDependencies": {
"babel-core": "^6.7.4",
"babel-jest": "^10.0.1",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^4.3.0",
"jest-cli": "^0.10.0",
"lodash": "^4.9.0",
"material-ui": "^0.14.4",
"react": "^0.14.8",
"react-dom": "^0.14.8",
"react-tap-event-plugin": "^0.2.2",
"style-loader": "^0.13.1",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
}
}