-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 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
39
40
41
42
43
44
45
46
{
"name": "cdnify",
"version": "0.1.4",
"description": "CLI tool and library to use CDN in production",
"main": "lib/index.js",
"bin": {
"cdnify": "bin/cdnify.js"
},
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/claudetech/node-cdnify"
},
"keywords": [
"html",
"cdn"
],
"author": "Daniel Perez",
"license": "MIT",
"bugs": {
"url": "https://github.com/claudetech/node-cdnify/issues"
},
"homepage": "https://github.com/claudetech/node-cdnify",
"devDependencies": {
"coffee-script": "^1.8.0",
"expect.js": "^0.3.1",
"grunt": "^0.4.5",
"grunt-contrib-coffee": "^0.11.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-cov": "^0.3.0"
},
"config": {
"blanket": {
"pattern": "src",
"loader": "./node-loaders/coffee-script",
"data-cover-never": "node_modules"
}
},
"dependencies": {
"cheerio": "^0.19.0",
"lodash": "^2.4.1",
"minimist": "^1.1.0"
}
}