-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 905 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
{
"name": "smallest-script-loader",
"version": "1.0.0",
"description": "Smallest promise-based script loader with cache support",
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buzinas/smallest-script-loader.git"
},
"keywords": [
"script",
"loader",
"tiny",
"small",
"smallest",
"promise",
"cache"
],
"author": "Vitor Buzinaro",
"license": "MIT",
"bugs": {
"url": "https://github.com/buzinas/smallest-script-loader/issues"
},
"homepage": "https://github.com/buzinas/smallest-script-loader#readme",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-plugin-transform-es2015-modules-umd": "^6.23.0"
},
"babel": {
"plugins": [
[
"transform-es2015-modules-umd"
]
]
}
}