forked from deck-of-cards/deck-of-cards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"name": "deck-of-cards",
"version": "0.1.9",
"description": "HTML5 Deck of Cards",
"main": "dist/deck.min.js",
"module": "lib/deck.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/",
"postversion": "git push --tags",
"postinstall": "opencollective-postinstall || true"
},
"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"
},
"dependencies": {
"opencollective-postinstall": "^2.0.2"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/deck-of-cards"
}
}