-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
63 lines (63 loc) · 2.01 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
{
"name": "react-tic-tac-toe",
"version": "1.0.3",
"description": "A React implementation of Tic Tac Toe for one or two players",
"main": "lib/TicTacToe.js",
"scripts": {
"start": "webpack-dev-server --devtool eval --progress --colors --hot --content-base public/",
"test": "webpack-dev-server --config test/webpack.test.config.js",
"dist": "webpack --config webpack.production.config.js",
"dist-min": "NODE_ENV=production webpack -p --config webpack.production.config.js",
"lib": "babel ./src --out-dir ./lib",
"gh-pages": "webpack --config webpack.production.config.js",
"deploy": "gh-pages -d demo",
"preversion": "npm run dist && npm run dist-min && npm run lib && git commit --allow-empty -am \"Update production build\"",
"postpublish": "npm run gh-pages && npm run deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/negomi/react-tic-tac-toe.git"
},
"keywords": [
"tic tac toe",
"react",
"reactjs",
"react-component"
],
"author": "Imogen Wentworth",
"license": "MIT",
"bugs": {
"url": "https://github.com/negomi/react-tic-tac-toe/issues"
},
"homepage": "http://negomi.github.io/react-tic-tac-toe/",
"dependencies": {
"normalize.css": "^3.0.3",
"react": "^0.14.0-rc1",
"react-dom": "^0.14.0-rc1"
},
"devDependencies": {
"autoprefixer": "^6.0.3",
"babel": "^5.8.23",
"babel-core": "^5.8.24",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"chai": "^3.2.0",
"clean-webpack-plugin": "^0.1.3",
"css-loader": "^0.19.0",
"eslint": "^1.6.0",
"eslint-plugin-react": "^3.4.2",
"file-loader": "^0.8.4",
"gh-pages": "^0.4.0",
"html-webpack-plugin": "^1.6.1",
"mocha": "^2.3.2",
"mocha-loader": "^0.7.1",
"node-sass": "^3.3.3",
"postcss-loader": "^0.6.0",
"react-addons-test-utils": "^0.14.0-rc1",
"sass-loader": "^3.0.0",
"style-loader": "^0.12.4",
"url-loader": "^0.5.6",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.11.0"
}
}