-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.18 KB
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
{
"name": "@degjs/module-loader",
"version": "5.1.2",
"description": "Asynchronously load JavaScript modules via an HTML attribute.",
"keywords": [
"DEGJS"
],
"author": {
"name": "Ryan Heap",
"email": "rheap@degdigital.com"
},
"contributors": [
{
"name": "Aaron Ladage",
"email": "aladage@degdigital.com",
"url": "http://aaronladage.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DEGJS/moduleLoader.git"
},
"bugs": "https://github.com/DEGJS/moduleLoader/issues",
"files": [
"src"
],
"main": "src/moduleLoader.js",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"babel-plugin-dynamic-import-node-babel-7": "^2.0.7",
"jest": "^26.6.3"
},
"scripts": {
"test": "jest"
},
"dependencies": {}
}