-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
76 lines (76 loc) · 1.99 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
{
"name": "lasso-require",
"description": "Lasso.js plugin to support Node.js style module require in the browser",
"keywords": [
"lasso",
"lasso-plugin",
"require",
"commonjs",
"modules"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lasso-js/lasso-require.git"
},
"scripts": {
"test": "npm run mocha && npm run jshint",
"mocha": "mocha --ui bdd --reporter spec ./test",
"jshint": "jshint src/"
},
"author": "Patrick Steele-Idem <[email protected]>",
"contributors": [
"Patrick Steele-Idem <[email protected]>",
"Phillip Gates-Idem <[email protected]>"
],
"maintainers": "Patrick Steele-Idem <[email protected]>",
"dependencies": {
"assert": "^1.4.1",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"buffer": "^5.2.1",
"clone": "^2.1.2",
"escodegen": "^1.11.0",
"esprima": "^4.0.1",
"estraverse": "^4.2.0",
"events": "^3.0.0",
"ignore": "^5.0.2",
"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",
"mkdirp": "^0.5.1",
"path-browserify": "1.0.0",
"process": "^0.11.10",
"raptor-async": "^1.1.3",
"raptor-logging": "^1.1.3",
"raptor-polyfill": "^1.1.0",
"raptor-promises": "^1.0.3",
"raptor-util": "^1.1.2",
"resolve-from": "^4.0.0",
"stream-browserify": "^2.0.1",
"string_decoder": "^1.1.1",
"through": "^2.3.8",
"url": "^0.11.0",
"util": "^0.11.0"
},
"devDependencies": {
"chai": "^4.2.0",
"jshint": "^2.9.6",
"mocha": "^5.2.0"
},
"license": "Apache-2.0",
"bin": {},
"main": "src/lasso-require-plugin.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"bugs": {
"url": "https://github.com/lasso-js/lasso-require/issues"
},
"homepage": "https://github.com/lasso-js/lasso-require#readme",
"directories": {
"test": "test"
},
"version": "3.5.0"
}