-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.87 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "async-script-loader",
"version": "0.0.1",
"description": "Load a script asynchronously",
"main": "lib/bundle/main.min.js",
"module": "lib/esm2015/main.js",
"scripts": {
"prebuild": "rimraf ./lib",
"build": "rollup -c",
"postbuild": "gulp compress",
"prepare": "npm run build",
"prepublish": "npm run build",
"start": "rollup -c rollup.dev.config.js --watch",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"script",
"load",
"async"
],
"files": [
"lib",
"src",
"README.md",
"LICENSE-MIT"
],
"author": "Deshiknaves <deshi@deshiknaves.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/deshiknaves/async-script-loader"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^22.4.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-prettier": "^2.6.0",
"gulp": "^3.9.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.0",
"jest": "^22.4.3",
"prettier": "^1.12.1",
"rimraf": "^2.6.2",
"rollup": "^0.54.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-serve": "^0.4.2",
"rollup-watch": "^4.3.1"
},
"dependencies": {
"uuid": "^3.2.1"
},
"jest": {
"collectCoverage": true
}
}