-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
93 lines (93 loc) · 2.55 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
{
"name": "lasso",
"description": "Lasso.js is a build tool and runtime library for building and bundling all of the resources needed by a web application",
"repository": {
"type": "git",
"url": "https://github.com/lasso-js/lasso.git"
},
"scripts": {
"test-coverage-report": "nyc npm run mocha && nyc report --reporter=html && open ./coverage/index.html",
"test": "nyc npm run mocha && npm run eslint",
"mocha": "rm -rf .cache && mocha --timeout 4000 --ui bdd --reporter spec ./test ./test/unit",
"eslint": "eslint src/ browser-refresh/ middleware/"
},
"author": "Patrick Steele-Idem <[email protected]>",
"maintainers": "Patrick Steele-Idem <[email protected]>",
"dependencies": {
"@babel/code-frame": "^7.18.6",
"app-root-dir": "^1.0.2",
"assert": "^2.0.0",
"browser-refresh-client": "^1.1.4",
"buffer": "^6.0.3",
"clean-css": "^5.3.1",
"complain": "^1.6.0",
"espree": "^9.4.0",
"estraverse": "^5.3.0",
"events": "^3.3.0",
"glob": "^8.0.3",
"image-size": "^1.0.2",
"lasso-caching-fs": "^1.0.2",
"lasso-loader": "^3.0.2",
"lasso-modules-client": "^2.0.7",
"lasso-package-root": "^1.0.1",
"lasso-resolve-from": "^1.2.0",
"mime": "^3.0.0",
"mkdirp": "^1.0.4",
"path-browserify": "1.0.1",
"process": "^0.11.10",
"property-handlers": "^1.1.1",
"raptor-async": "^1.1.3",
"raptor-cache": "^2.0.4",
"raptor-css-parser": "^1.1.6",
"raptor-logging": "^1.1.3",
"raptor-regexp": "^1.0.1",
"raptor-util": "^3.2.0",
"resolve-from": "^4.0.0",
"send": "^0.18.0",
"stream-browserify": "^3.0.0",
"string_decoder": "^1.3.0",
"strip-json-comments": "^3.1.1",
"terser": "^5.15.0",
"through": "^2.3.8",
"url": "^0.11.0",
"util": "^0.12.4"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.24.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-standard": "^4.1.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"require-self-ref": "^2.0.1",
"sinon": "^14.0.0",
"strip-ansi": "^6.0.0"
},
"engines": {
"node": ">=16"
},
"nyc": {
"exclude": [
"**/coverage/**",
"**/test/**",
"**/cache/**"
]
},
"license": "Apache-2.0",
"main": "./index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"bundler",
"build",
"css",
"javascript",
"concat",
"minify"
],
"version": "4.0.4"
}