-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.06 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
{
"name": "canvas-slider",
"version": "1.0.0",
"description": "browse trough images using a canvas tag",
"scripts": {
"build": "browserify src/index.coffee --extension=.coffee | uglifyjs -mc > dist/canvas-slider.js",
"watch-js": "watchify src/index.coffee --extension=.coffee -o dist/canvas-slider.js -dv",
"watch-tests": "onchange 'dist/canvas-slider.js' 'src/**/*.test.coffee' -- npm test",
"serve": "nws -p 3030",
"start": "npm-run-all --parallel watch-js watch-tests serve",
"test": "mocha --compilers coffee:coffee-script/register src/**/*.test.coffee"
},
"repository": {
"type": "git",
"url": "[email protected]:christiaan/canvas-slider.git"
},
"author": "Christiaan Baartse",
"license": "MIT",
"devDependencies": {
"browserify": "^10.1.3",
"coffee-script": "^1.9.2",
"coffeeify": "^1.1.0",
"mocha": "^2.2.4",
"nws": "^0.6.1",
"onchange": "^1.1.0",
"uglify-js": "^2.4.21",
"watchify": "^3.2.1",
"npm-run-all": "^1.2.5"
},
"browserify": {
"transform": [
"coffeeify"
]
}
}