This repository has been archived by the owner on Dec 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
69 lines (69 loc) · 1.75 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
68
69
{
"name": "getlibs",
"version": "0.1.1",
"description": "An in-browser module loader configured to get external dependencies directly from CDN. Includes babel/typescript. For quick prototyping, code sharing, teaching/learning - a super simple web dev environment without node/webpack/etc.",
"main": "dist/src.js",
"unpkg": "dist/min.js",
"files": [
"dist",
"plugins"
],
"scripts": {
"test": "gulp && wdio test/wdio.local.js",
"build": "gulp"
},
"devDependencies": {
"ang2-conduit": "git+https://github.com/gothinkster/angular-realworld-example-app.git",
"chai": "^3.5.0",
"es6-promise": "^4.1.0",
"express": "^4.0.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^3.0.1",
"gulp-footer": "^1.0.5",
"gulp-header": "^1.8.8",
"gulp-sourcemaps": "^2.4.0",
"gulp-uglify": "^2.0.0",
"systemjs": "^0.20.12",
"wdio-dot-reporter": "0.0.8",
"wdio-mocha-framework": "^0.5.10",
"wdio-sauce-service": "^0.4.0",
"wdio-spec-reporter": "^0.1.0",
"wdio-static-server-service": "^1.0.1",
"webdriverio": "^4.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/activewidgets/getlibs.git"
},
"keywords": [
"systemjs",
"unpkg",
"cdnjs",
"babel",
"typescript",
"javascript",
"angular",
"react",
"vue"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/activewidgets/getlibs/issues"
},
"eslintConfig": {
"extends": "eslint:recommended",
"globals": {
"Promise": true,
"System": true,
"SystemJS": true,
"define": true,
"config": true
},
"env": {
"browser": true
}
},
"homepage": "http://getlibs.com"
}