This repository has been archived by the owner on Aug 18, 2020. It is now read-only.
forked from assetgraph/assetgraph-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.35 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "assetgraph-builder",
"description": "Build system for web sites and applications",
"repository": "git://github.com/One-com/assetgraph-builder.git",
"version": "3.0.2-podio",
"keywords": [
"assetgraph",
"web",
"build",
"build system",
"single page",
"web application",
"static html",
"cache manifest",
"appcache",
"spriting",
"html",
"css",
"javascript",
"jsdom",
"localization",
"internationalization",
"i18n",
"l10n"
],
"maintainers": [
{
"name": "Andreas Lind Petersen",
"email": "andreas@one.com"
},
{
"name": "Peter Müller",
"email": "munter@fumle.dk"
}
],
"main": "lib/AssetGraph.js",
"files": [
"lib",
"bin"
],
"dependencies": {
"assetgraph": "1.15.4",
"async": "0.9.0",
"chalk": "1.0.0",
"express-processimage": "https://github.com/podio/express-processimage/archive/v2.1.1-podio.tar.gz",
"extend": "1.2.1",
"jpegtran": "0.1.0",
"lodash": "2.4.1",
"memoizesync": "0.5.0",
"ng-annotate": "0.15.4",
"optimist": "0.6.1",
"optipng": "0.1.1",
"passerror": "1.1.0",
"plurals-cldr": "1.0.1",
"pngcrush": "0.1.0",
"pngquant": "https://github.com/podio/node-pngquant/archive/v0.4.1-podio.tar.gz",
"semver": "4.3.1",
"seq": "0.3.5",
"temp": "0.8.1",
"urltools": "0.2.0"
},
"optionalDependencies": {
"assetgraph-sprite": "0.7.1",
"histogram": "2.0.0",
"node-zopfli": "1.2.1"
},
"devDependencies": {
"autoprefixer": "3.1.0",
"coveralls": "2.11.2",
"gm": "1.17.0",
"istanbul": "0.3.6",
"jsdom": "0.11.0",
"jshint": "2.6.0",
"less": "1.6.3",
"mocha": "2.1.0",
"node-sass": "0.9.4",
"sinon": "1.12.2",
"unexpected": "5.9.3",
"unexpected-jsdom": "5.1.0",
"unexpected-sinon": "5.1.0"
},
"engines": {
"node": ">=0.8.0"
},
"directories": {
"lib": "./lib",
"bin": "./bin"
},
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"scripts": {
"lint": "jshint . bin/*",
"test": "npm run lint && mocha",
"travis": "npm run lint && npm run coverage",
"coverage": "NODE_ENV=development ./node_modules/.bin/istanbul cover --include-all-sources -x '**/testdata/**' -x lib/i18nTools.js -x lib/bootstrapper.js ./node_modules/mocha/bin/_mocha -- --reporter dot"
}
}