-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "eight-queens",
"version": "0.0.1-ALPHA",
"description": "El famoso puzzle de las 8 reinas, pero deberás jugar contra un I.A.",
"main": "index.js",
"dependencies": {
"@types/jquery": "^2.0.45",
"browser-sync": "^2.18.12",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^4.0.0",
"gulp-coffee": "^2.3.4",
"gulp-pug": "^3.3.0",
"gulp-run": "^1.7.1",
"gulp-sass": "^3.1.0",
"gulp-typescript": "^3.1.6",
"gulp-uglify": "^2.1.2",
"pug": "^2.0.0-rc.1",
"ts-loader": "^2.1.0",
"typescript": "^2.3.2",
"webpack": "^2.6.1"
},
"devDependencies": {},
"scripts": {
"go": "gulp go",
"build": "./node_modules/.bin/webpack --progress --config=./webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saintplay/eight-queens.git"
},
"keywords": [
"Algorithms"
],
"author": "Diego Jara",
"license": "MIT",
"bugs": {
"url": "https://github.com/saintplay/eight-queens/issues"
},
"homepage": "https://github.com/saintplay/eight-queens#readme"
}