forked from lasso-js/lasso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.61 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
{
"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": "rm -rf .cache && nyc npm run mocha && nyc report --reporter=html && open ./coverage/index.html && npm run mocha && npm run eslint",
"test-coverage": "npm run build && rm -rf .cache && nyc npm run mocha && npm run mocha && npm run eslint",
"test-no-coverage": "npm run build && rm -rf .cache && npm run mocha && npm run mocha && npm run eslint",
"test": "node scripts/run-tests.js",
"test:unit": "npm run build && rm -rf .cache && node_modules/.bin/mocha --timeout 4000 --ui bdd --reporter spec ./test-dist-compat/unit",
"mocha": "node_modules/.bin/mocha --timeout 4000 --ui bdd --reporter spec ./test-dist-compat ./test-dist-compat/unit",
"eslint": "node_modules/.bin/eslint src/ browser-refresh/ middleware/ scripts/",
"build": "node scripts/build.js",
"build-src": "node scripts/build.js src",
"prepublish": "npm run build-src"
},
"author": "Patrick Steele-Idem <[email protected]>",
"maintainers": "Patrick Steele-Idem <[email protected]>",
"dependencies": {
"app-module-path": "^1.1.0",
"app-root-dir": "^1.0.2",
"assert": "^1.1.2",
"async": "^0.9.2",
"browser-refresh-client": "^1.1.4",
"buffer": "^4.5.1",
"clean-css": "^3.4.28",
"clone": "^0.1.19",
"complain": "^1.2.0",
"escodegen": "^1.6.0",
"esprima": "^4.0.0",
"estraverse": "^4.2.0",
"events": "^1.0.2",
"glob": "^7.1.1",
"image-size": "^0.6.1",
"lasso-caching-fs": "^1.0.2",
"lasso-loader": "^3.0.2",
"lasso-modules-client": "^2.0.5",
"lasso-package-root": "^1.0.1",
"lasso-resolve-from": "^1.2.0",
"marko": "^4.2.8",
"mime": "^1.2.11",
"mkdirp": "^0.5.1",
"path-browserify": "0.0.0",
"pify": "^3.0.0",
"process": "^0.6.0",
"property-handlers": "^1.1.1",
"raptor-async": "^1.1.3",
"raptor-cache": "^2.0.0",
"raptor-css-parser": "^1.1.5",
"raptor-detect": "^1.0.1",
"raptor-logging": "^1.1.2",
"raptor-objects": "^1.0.2",
"raptor-polyfill": "^1.0.2",
"raptor-promises": "^1.0.3",
"raptor-regexp": "^1.0.1",
"raptor-strings": "^1.0.2",
"raptor-util": "^3.2.0",
"resolve-from": "^1.0.1",
"send": "^0.13.2",
"stream-browserify": "^1.0.0",
"string_decoder": "^0.10.31",
"strip-json-comments": "^2.0.1",
"through": "^2.3.8",
"uglify-js": "^2.8.29",
"url": "^0.11.0",
"util": "^0.10.3"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.0.15",
"babel-register": "^6.5.2",
"chai": "^3.5.0",
"deamdify": "^0.1.1",
"eslint": "^4.8.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"fs-extra": "~0.12.0",
"micromatch": "^3.1.0",
"mocha": "^3.4.2",
"nyc": "^11.2.1",
"require-self-ref": "^2.0.1",
"shelljs": "^0.7.8",
"sinon": "^3.2.1"
},
"nyc": {
"exclude": [
"**/coverage/**",
"**/test/**",
"**/dist-compat/**",
"**/test-dist-compat/**",
"**/cache/**"
]
},
"license": "Apache-2.0",
"main": "./index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"bundler",
"build",
"css",
"javascript",
"concat",
"minify"
],
"version": "3.1.2"
}