-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.4 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
{
"name": "load-dynamic-module",
"version": "1.3.5",
"description": "a browser-based loader for both AMD/UMD and CommonJS modules",
"main": "index.mjs",
"module": "index.mjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf lib && webpack",
"pub": "npm run build && git add . && git commit -m 'working code' && npm version patch -m 'upgrade to %s while working code' && git push && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frudman/load-dynamic-module.git"
},
"keywords": [
"module",
"package",
"amd",
"commonjs",
"commonjs2",
"cjs",
"cjs2",
"dynamic",
"require",
"resolve",
"on-demand",
"async",
"load",
"loader",
"import",
"export",
"browser",
"client"
],
"author": "Frederic Rudman",
"license": "ISC",
"dependencies": {
"tidbits": "^1.0.25"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.3.4",
"babel-loader": "^8.0.5",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
}
}