-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 2.14 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
{
"name": "tictactoe",
"version": "1.0.0",
"description": "Tic Tac Toe for the masses!",
"keywords": [
"tictactoe",
"gato",
"juego",
"game"
],
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/.bin/webpack --config ./webpack.config.npm.js",
"watch": "./node_modules/.bin/webpack --watch",
"start": "webpack-dev-server",
"build_ttt_mayor": "./node_modules/.bin/webpack --config ./tictactoepro/webpack.config.js --env.major",
"build_ttt_minor": "./node_modules/.bin/webpack --config ./tictactoepro/webpack.config.js --env.minor",
"build_ttt_patch": "./node_modules/.bin/webpack --config ./tictactoepro/webpack.config.js --env.patch",
"build_ttr_mayor": "./node_modules/.bin/webpack --config ./tictactoeprorec/webpack.config.js --env.major",
"build_ttr_minor": "./node_modules/.bin/webpack --config ./tictactoeprorec/webpack.config.js --env.minor",
"build_ttr_patch": "./node_modules/.bin/webpack --config ./tictactoeprorec/webpack.config.js --env.patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jalmada/tictactoe.git"
},
"author": "Jose Almada <[email protected]> (http://jalmada.me)",
"license": "ISC",
"bugs": {
"url": "https://github.com/jalmada/tictactoe/issues"
},
"homepage": "https://github.com/jalmada/tictactoe#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.7",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.30.1",
"path": "^0.12.7",
"style-loader": "^0.18.2",
"webpack": "^3.5.6",
"webpack-auto-inject-version": "^1.1.0",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {
"jquery": "^3.2.1",
"tictactoeprorec":"^1.0.0"
}
}