UNPKG

3.39 kBJSONView Raw
1{
2 "name": "assetgraph",
3 "description": "An auto discovery dependency graph based optimization framework for web pages and applications",
4 "repository": "git://github.com/assetgraph/assetgraph.git",
5 "version": "6.1.1",
6 "license": "BSD-3-Clause",
7 "maintainers": [
8 {
9 "name": "Andreas Lind",
10 "email": "andreaslindpetersen@gmail.com"
11 },
12 {
13 "name": "Peter Müller",
14 "email": "munter@fumle.dk"
15 }
16 ],
17 "files": [
18 "lib",
19 "examples",
20 "test/unexpected-with-plugins.js",
21 "test/unexpectedAssetGraph.js"
22 ],
23 "dependencies": {
24 "acorn": "^7.0.0",
25 "acorn-jsx": "^5.0.1",
26 "bluebird": "^3.5.1",
27 "chalk": "^2.0.1",
28 "common-path-prefix": "^1.0.0",
29 "createerror": "^1.3.0",
30 "cssnano": "^4.1.10",
31 "data-urls": "^1.0.0",
32 "domspace": "^1.2.1",
33 "esanimate": "^1.1.0",
34 "escodegen": "^1.12.0",
35 "espurify": "^2.0.1",
36 "estraverse": "^4.3.0",
37 "estraverse-fb": "^1.3.2",
38 "gettemporaryfilepath": "^1.0.0",
39 "glob": "^7.0.5",
40 "html-minifier": "^4.0.0",
41 "imageinfo": "^1.0.4",
42 "jsdom": "^15.0.0",
43 "lines-and-columns": "^1.1.6",
44 "lodash": "4.17.15",
45 "memoizesync": "1.1.1",
46 "mkdirp": "^0.5.1",
47 "normalizeurl": "^1.0.0",
48 "perfectionist": "^2.4.0",
49 "postcss": "^7.0.14",
50 "qs": "^6.5.2",
51 "read-pkg-up": "^6.0.0",
52 "repeat-string": "^1.5.4",
53 "schemes": "^1.0.1",
54 "semver": "^6.0.0",
55 "sift": "^7.0.1",
56 "source-map": "~0.6.1",
57 "specificity": "^0.4.0",
58 "sw-precache": "^5.2.0",
59 "teepee": "^2.31.1",
60 "terser": "^4.0.0",
61 "urltools": "^0.4.1"
62 },
63 "devDependencies": {
64 "autoprefixer": "^9.0.0",
65 "closure-compiler": "^0.2.12",
66 "coveralls": "^3.0.2",
67 "css-loader": "^3.0.0",
68 "docdash": "^1.0.0",
69 "eslint": "^6.0.0",
70 "eslint-config-prettier": "^6.0.0",
71 "eslint-config-standard": "^13.0.1",
72 "eslint-plugin-import": "^2.17.3",
73 "eslint-plugin-mocha": "^6.0.0",
74 "eslint-plugin-node": "^9.0.1",
75 "eslint-plugin-promise": "^4.0.1",
76 "eslint-plugin-standard": "^4.0.0",
77 "extract-text-webpack-plugin": "^4.0.0-beta.0",
78 "file-loader": "^4.0.0",
79 "httpception": "^3.0.0",
80 "iconv-lite": "^0.5.0",
81 "jsdoc": "^3.5.5",
82 "less": "^2.7.3",
83 "magicpen-prism": "3.0.2",
84 "mocha": "^6.0.0",
85 "nyc": "^14.0.0",
86 "offline-github-changelog": "^1.6.1",
87 "open": "^6.0.0",
88 "prettier": "~1.18.2",
89 "proxyquire": "^2.0.1",
90 "requirejs": "^2.3.5",
91 "sinon": "^7.0.0",
92 "style-loader": "^1.0.0",
93 "svgo": "^1.0.5",
94 "systemjs-asset-plugin": "^3.0.0",
95 "systemjs-builder": "^0.16.13",
96 "uglify-js": "^3.4.9",
97 "unexpected": "^11.0.0-1",
98 "unexpected-dom": "^4.5.0",
99 "unexpected-set": "^2.0.0",
100 "unexpected-sinon": "^10.10.1",
101 "webpack": "^4.16.1",
102 "yui-compressor": "^0.1.3"
103 },
104 "main": "lib/AssetGraph.js",
105 "scripts": {
106 "lint": "eslint . && prettier --check '**/*.js'",
107 "test": "mocha",
108 "ci": "npm run coverage && npm run lint",
109 "docs": "jsdoc -c jsdoc.json",
110 "coverage": "NODE_ENV=test nyc --reporter=lcov --reporter=text --all -- mocha --reporter dot && echo google-chrome coverage/lcov-report/index.html",
111 "preversion": "offline-github-changelog --next=${npm_package_version} > CHANGELOG.md && git add CHANGELOG.md"
112 },
113 "nyc": {
114 "include": [
115 "lib/**"
116 ]
117 }
118}