-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
112 lines (112 loc) · 2.54 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "backed-cli",
"version": "0.11.0",
"description": "The official command line interface for Backed",
"homepage": "https://github.com/vandeurenglenn/backed-cli",
"author": {
"name": "Glenn Vandeuren",
"email": "[email protected]",
"url": ""
},
"preferGlobal": true,
"bin": {
"backed": "./bin/backed.js"
},
"keywords": [
"build",
"bundle",
"serve",
"custom",
"element",
"cli",
"backed",
"html",
"es"
],
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"del": "^2.2.2",
"esdoc": "^0.5.2",
"eslint": "^3.1.1",
"eslint-config-xo-space": "^0.15.0",
"gulp": "gulpjs/gulp#4.0",
"gulp-coveralls": "^0.1.0",
"gulp-eslint": "^3.0.1",
"gulp-exclude-gitignore": "^1.0.0",
"gulp-istanbul": "^1.0.0",
"gulp-line-ending-corrector": "^1.0.1",
"gulp-mocha": "^3.0.1",
"gulp-nsp": "^2.1.0",
"gulp-plumber": "^1.0.0",
"merge-stream": "^1.0.1",
"rollup-plugin-uglify": "^1.0.2",
"uglify-es": "^3.0.28"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"browser": true,
"mocha": true
}
},
"repository": "https://github.com/VandeurenGlenn/backed-cli",
"scripts": {
"prepublish": "esdoc",
"test": "gulp"
},
"license": "CC-BY-NC-ND-4.0",
"dependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-async-generator-functions": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"backed-builder": "^1.3.2",
"backed-client": "^1.1.0",
"backed-fs": "^1.0.2",
"chalk": "^1.1.3",
"chokidar": "^1.6.1",
"commander": "^2.9.0",
"elegant-spinner": "^1.0.1",
"express": "^4.14.1",
"glob": "^7.1.1",
"inject-template": "^0.2.0",
"log-update": "^1.0.2",
"opn": "^5.1.0",
"reload": "^1.1.1",
"rollup": "^0.41.4",
"rollup-plugin-async": "^1.2.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-cleanup": "^1.0.0",
"rollup-plugin-json": "^2.1.0",
"vinyl-read": "^1.0.0",
"webup": "^1.8.0",
"webup-preset-default": "^1.1.0",
"webup-preset-element": "^1.0.0"
},
"esdoc": {
"source": "./src",
"destination": "./docs",
"experimentalProposal": {
"asyncGenerators": true
}
},
"babel": {
"presets": [
[
"es2015",
{
"modules": false
}
]
],
"plugins": [
"external-helpers",
[
"transform-runtime",
{
"polyfill": false,
"regenerator": true
}
]
]
}
}