-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 982 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
40
41
42
43
{
"name": "assets-expander",
"version": "1.0.2",
"author": "Jakub Pawlowicz <contact@jakubpawlowicz.com> (http://twitter.com/jakubpawlowicz)",
"description": "A well-tested tool for expanding any files structure defined in YAML file into a flat list of files",
"license": "MIT",
"keywords": [
"css",
"javascript",
"assets",
"yaml"
],
"homepage": "http://github.com/jakubpawlowicz/assets-expander",
"repository": {
"type" : "git",
"url" : "http://github.com/jakubpawlowicz/assets-expander.git"
},
"bugs": {
"url": "https://github.com/jakubpawlowicz/assets-expander/issues"
},
"main": "index.js",
"files": [
"lib",
"History.md",
"index.js",
"LICENSE"
],
"scripts": {
"check": "jshint .",
"prepublish": "jshint .",
"test": "vows"
},
"dependencies": {
"js-yaml": "3.2.x"
},
"devDependencies": {
"jshint": "2.5.x",
"vows": "0.7.x"
},
"engines": {
"node": ">=0.8.0"
}
}