forked from kmturley/es6-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·65 lines (65 loc) · 1.65 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
{
"name": "es6-modules",
"description": "Example showing how to use ES6 Modules today",
"version": "1.0.0",
"main": "config.js",
"dependencies": {
"gulp-imagemin": "^4.1.0",
"jasmine": "^3.2.0"
},
"scripts": {
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kmturley/es6-modules.git"
},
"keywords": [
"es6",
"jspm",
"gulp",
"modules"
],
"author": "kmturley",
"license": "ISC",
"bugs": {
"url": "https://github.com/kmturley/es6-modules/issues"
},
"homepage": "https://github.com/kmturley/es6-modules#readme",
"jspm": {
"configFile": "jspm.conf.js",
"dependencies": {
"angular": "github:angular/bower-angular@^1.7.5",
"css": "github:systemjs/plugin-css@^0.1.37",
"text": "github:systemjs/plugin-text@^0.0.11"
},
"devDependencies": {
"babel": "npm:babel-core@^6.26.3",
"babel-runtime": "npm:babel-runtime@^6.26.0",
"core-js": "npm:core-js@^2.5.7"
}
},
"devDependencies": {
"del": "^2.1.0",
"gulp": "^4.0.0",
"gulp-autoprefixer": "^3.1.0",
"gulp-connect": "^5.6.1",
"gulp-esdoc": "^0.4.1",
"gulp-html-replace": "^1.5.5",
"gulp-htmlmin": "^1.3.0",
"gulp-jsdoc": "^0.1.5",
"gulp-jspm": "^0.5.13",
"gulp-merge-media-queries": "^0.2.1",
"gulp-minify-css": "^1.2.2",
"gulp-rename": "^1.2.2",
"gulp-sass": "^4.0.1",
"gulp-webdriver": "^2.0.3",
"imagemin-pngquant": "^6.0.0",
"require-dir": "^0.3.0",
"sassdoc": "^2.1.15",
"selenium-standalone": "^6.15.3",
"systemjs": "^0.19.6",
"webdrivercss": "^2.0.0-beta-rc1",
"webdriverio": "^4.13.2"
}
}