forked from whitlockjc/path-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.64 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "path-loader",
"version": "1.0.10",
"description": "Utility that provides a single API for loading the content of a path/URL.",
"main": "index.js",
"scripts": {
"test": "gulp"
},
"author": {
"name": "Jeremy Whitlock",
"email": "jwhitlock@apache.org",
"url": "https://github.com/whitlockjc"
},
"bugs": {
"url": "https://github.com/whitlockjc/path-loader/issues"
},
"files": [
"dist",
"index.d.ts",
"index.js",
"lib/**/*.js"
],
"homepage": "https://github.com/whitlockjc/path-loader",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/whitlockjc/path-loader.git"
},
"keywords": [
"json"
],
"browser": {
"./lib/loaders/file.js": "./lib/loaders/file-browser.js"
},
"devDependencies": {
"@otris/jsdoc-tsd": "^1.0.4",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"basic-auth": "^2.0.0",
"connect": "^3.7.0",
"del": "^3.0.0",
"gulp": "~4.0.0",
"gulp-eslint": "^6.0.0",
"gulp-if": "^3.0.0",
"gulp-istanbul": "~1.1.1",
"gulp-jsdoc3": "^3.0.0",
"gulp-load-plugins": "^1.6.0",
"gulp-mocha": "~3.0.1",
"gulp-replace": "^1.0.0",
"gulp-uglify": "^3.0.2",
"jsdoc": "^3.6.4",
"jsdoc-to-markdown": "^6.0.1",
"karma": "^1.6.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-phantomjs-launcher": "^1.0.4",
"karma-webpack": "^4.0.2",
"mocha": "^4.0.1",
"phantomjs-prebuilt": "^2.1.7",
"webpack": "^4.43.0"
},
"dependencies": {
"native-promise-only": "^0.8.1",
"superagent": "^5.3.1"
}
}