-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
121 lines (121 loc) · 3 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "assetgraph-builder",
"description": "Build system for web sites and applications",
"repository": "git://github.com/assetgraph/assetgraph-builder.git",
"version": "9.3.0",
"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",
"email": "[email protected]"
},
{
"name": "Peter Müller",
"email": "[email protected]"
}
],
"license": "BSD-3-Clause",
"main": "lib/AssetGraph.js",
"files": [
"lib",
"bin"
],
"dependencies": {
"assetgraph": "7.12.0",
"assetgraph-hashfiles": "^1.0.1",
"assetgraph-sprite": "^3.2.0",
"browserslist": "^4.4.2",
"chalk": "^4.0.0",
"esanimate": "^2.0.0",
"estraverse": "^5.0.0",
"extend": "^3.0.0",
"gm-papandreou": "^1.23.0-patch1",
"impro": "~0.13.0",
"jpegtran": "^2.0.0",
"lodash": "^4.14.1",
"memoizesync": "^1.1.1",
"optipng": "^4.1.0",
"p-map": "^4.0.0",
"passerror": "^1.1.1",
"pngcrush": "^3.0.0",
"pngquant": "^4.0.0",
"urltools": "^0.4.1",
"yargs": "^17.1.1"
},
"devDependencies": {
"autoprefixer": "^9.0.0",
"coveralls": "^3.0.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-mocha": "^10.0.1",
"eslint-plugin-n": "^15.1.0",
"eslint-plugin-promise": "^6.0.0",
"gettemporaryfilepath": "^1.0.0",
"gifsicle-stream": "^1.0.0",
"gm-papandreou": "^1.23.0-patch1",
"html-webpack-plugin": "^4.0.1",
"inkscape": "^3.0.0",
"jsdom": "^19.0.0",
"less": "^2.7.1",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"offline-github-changelog": "^2.0.0",
"prettier": "~2.7.0",
"requirejs": "^2.3.3",
"rimraf": "^3.0.0",
"sharp": "^0.30.4",
"sinon": "^14.0.0",
"source-map": "^0.7.2",
"svgfilter": "^4.0.0",
"svgo": "^2.8.0",
"systemjs-builder": "^0.16.0",
"unexpected": "^13.0.0",
"unexpected-color": "^4.1.0",
"unexpected-dom": "^5.1.0",
"unexpected-image": "^4.1.0",
"unexpected-sinon": "^11.1.0",
"webpack": "^4.8.3"
},
"engines": {
"node": ">= 4"
},
"directories": {
"lib": "./lib",
"bin": "./bin"
},
"scripts": {
"lint": "eslint . bin/* && prettier --check '**/*.{js,json,md}' 'bin/*'",
"test": "mocha",
"test:ci": "npm run coverage",
"coverage": "nyc --reporter=lcov --reporter=text --all -- mocha --reporter dot && echo google-chrome coverage/lcov-report/index.html",
"preversion": "offline-github-changelog --next=${npm_new_version} > CHANGELOG.md && git add CHANGELOG.md"
},
"nyc": {
"include": [
"lib/**",
"bin/**"
]
}
}