-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 994 Bytes
/
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
{
"name": "clientside-require",
"version": "4.7.2",
"description": "Node.js style require() statements in the browser. Load npm modules, js, html, css, json without any bundling.",
"main": "src/index.js",
"bundle": "dist/bundle.js",
"scripts": {
"build": "browserify src/index.js -o dist/bundle.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/uladkasach/clientside-require"
},
"keywords": [
"browser",
"clientside",
"client-side",
"frontend",
"front-end",
"packaging",
"require",
"async-require",
"promise_require",
"promise_to_require",
"import",
"bower",
"browserify",
"commonjs",
"npm",
"import"
],
"author": "UladKasach",
"license": "AGPL-3.0",
"devDependencies": {
"browserify": "^16.2.2",
"jsdom": "^11.11.0",
"mocha": "^5.2.0",
"xmlhttprequest": "^1.8.0"
},
"dependencies": {
"dynamic-serial-promise-all": "^1.1.0"
}
}