forked from deck-of-cards/deck-of-cards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1 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
{
"name": "deck-of-cards",
"version": "0.1.6",
"description": "HTML5 Deck of Cards",
"main": "dist/deck.min.js",
"jsnext:main": "lib/deck.js",
"scripts": {
"start": "node index",
"build-js": "rollup --name Deck -f iife lib/deck.js | babel -o dist/deck.js && uglifyjs dist/deck.js -cmo dist/deck.min.js",
"build-css": "stylus -u nib css/index.styl -o example/example.css",
"build-html": "jade -P views/index.jade -o example/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pakastin/deck-of-cards.git"
},
"keywords": [
"html5",
"deck",
"of",
"cards"
],
"author": "Juha Lindstedt",
"license": "MIT",
"bugs": {
"url": "https://github.com/pakastin/deck-of-cards/issues"
},
"homepage": "https://github.com/pakastin/deck-of-cards#readme",
"devDependencies": {
"babel": "^5.8.23",
"chokidar": "^1.0.5",
"jade": "^1.11.0",
"nib": "^1.1.0",
"rollup": "^0.16.4",
"stylus": "^0.52.0",
"uglify-js": "^2.4.24"
}
}