-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.49 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
{
"name": "toasty",
"version": "6.0.3",
"description": "Make the Mortal Kombat toasty guy pop out on your site.",
"main": "index.js",
"scripts": {
"build": "mkdir -p dist && browserify -t es6-arrow-function index.js > dist/toasty.js",
"build:standalone": "mkdir -p dist && browserify -t es6-arrow-function index.js --standalone toasty > dist/toasty.js",
"example": "mkdir -p example/dist && browserify -t es6-arrow-function example/main.js > example/dist/main.js && cp example/index.html example/dist/index.html",
"test": "karma start test/karma.conf.js --single-run",
"test:watch": "karma start test/karma.conf.js",
"coverage": "cat ./coverage/lcov/lcov.info | coveralls"
},
"keywords": [
"toasty",
"mortal",
"kombat",
"secret",
"easter",
"egg"
],
"repository": {
"type": "git",
"url": "https://github.com/zakangelle/toasty.git"
},
"author": "Zak Angelle",
"license": "MIT",
"dependencies": {
"css-transition": "0.0.2"
},
"devDependencies": {
"browserify": "^13.0.0",
"browserify-istanbul": "^2.0.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"coveralls": "^2.11.9",
"es6-arrow-function": "^0.6.6",
"karma": "^0.13.22",
"karma-browserify": "^5.0.3",
"karma-chrome-launcher": "^0.2.3",
"karma-cli": "^0.1.2",
"karma-coverage": "^0.5.5",
"karma-firefox-launcher": "^0.1.7",
"karma-mocha": "^0.2.2",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"watchify": "^3.7.0"
}
}