-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 997 Bytes
/
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
{
"name": "rig-up",
"version": "0.4.0",
"description": "Responsive image generator.",
"main": "lib/rig.js",
"keywords": [
"responsive",
"responsive images",
"media queries",
"srcset"
],
"homepage": "https://github.com/the-grid/rig",
"bugs": "https://github.com/the-grid/rig/issues",
"license": "MIT",
"author": {
"name": "Paul Young",
"url": "https://github.com/paulyoung"
},
"repository": {
"type": "git",
"url": "https://github.com/the-grid/rig.git"
},
"scripts": {
"build": "npm run clean; ./node_modules/.bin/coffee --compile --output lib/ src/",
"clean": "mkdir -p lib; rm -r lib; mkdir lib",
"test": "npm run build; ./node_modules/.bin/mocha spec/**/*.coffee --compilers coffee:coffee-script/register --reporter spec"
},
"dependencies": {
"imgflo-url": "^1.2.0"
},
"devDependencies": {
"chai": "^3.3.0",
"coffee-script": "^1.10.0",
"mocha": "^3.1.2"
},
"engines": {
"node": ">= 4"
}
}