-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.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
{
"name": "card-shuffling",
"version": "1.0.0",
"description": "Creates, shuffles and deals a deck of cards to a user determined number of people.",
"main": "index.html",
"scripts": {
"test": "mocha",
"browser": "cd lib && browserify main.js -o bundle.js",
"babel": "./node_modules/.bin/babel src --out-dir lib",
"start": "http-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrisotto6/card-shuffling.git"
},
"keywords": [
"babel",
"browserify",
"javascript",
"node"
],
"author": "Chris Otto",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrisotto6/card-shuffling/issues"
},
"homepage": "https://github.com/chrisotto6/card-shuffling#readme",
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/preset-env": "^7.19.3",
"@babel/core": "^7.19.3",
"browserify": "^17.0.0",
"chai": "^4.3.0",
"http-server": "^0.12.3",
"mocha": "^10.0.0"
},
"dependencies": {
"@babel/polyfill": "^7.12.1"
}
}