-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
{
"name": "blackjack-trainer-js",
"version": "0.0.3",
"description": "Blackjack trainer with optional AI seating placement",
"main": "index.html",
"scripts": {
"dev": "gulp copy:devlibs && live-server ./src/",
"deploy": "test -f .deploy.sh && bash .deploy.sh || (echo \"No .deploy.sh was found.\"; exit 1)",
"build": "gulp",
"start": "npm run build && live-server ./dist/",
"test": "echo \"No test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RileyR387/blackjack-ai-js.git"
},
"keywords": [
"blackjack",
"angularjs",
"ai"
],
"author": "Riley Raschke",
"license": "OSL-3.0",
"bugs": {
"url": "https://github.com/RileyR387/blackjack-trainer-js/issues"
},
"homepage": "https://github.com/RileyR387/blackjack-trainer-js#readme",
"devDependencies": {
"del": "^5.1.0",
"gulp": "^4.0.2",
"gulp-angular-embed-templates": "^2.3.0",
"gulp-clean-css": "^4.2.0",
"gulp-if": "^3.0.0",
"gulp-inject-string": "^1.1.2",
"gulp-livereload": "^4.0.2",
"gulp-npm-dist": "^1.0.3",
"gulp-sourcemaps": "^2.6.5",
"gulp-terser": "^1.2.0",
"gulp-uglify": "^3.0.2",
"gulp-useref": "^4.0.0",
"gulp-w3c-html-validator": "^2.0.0",
"lazypipe": "^1.0.2",
"live-server": "^1.2.0",
"material-design-icons": "^3.0.1"
},
"dependencies": {
"angular": "^1.7.9",
"bootstrap": "^4.4.1",
"clipboard": "^2.0.4",
"jquery": "^3.4.1",
"popper.js": "^1.16.0",
"sortablejs": "^1.10.2"
}
}