-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "iframe-application",
"version": "0.0.1",
"description": "A pseudo-SPA application using iframes, for developers not familiar with frontend skills",
"main": "index.html",
"type": "module",
"scripts": {
"ready": "npm install",
"dev": "gulp dev",
"deploy": "gulp deploy",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yakima-Teng/iframe-application.git"
},
"keywords": [
"SPA",
"iframe",
"gulp",
"less",
"handlebars",
"requirejs"
],
"author": "Yakima",
"license": "MIT",
"bugs": {
"url": "https://github.com/Yakima-Teng/iframe-application/issues"
},
"homepage": "https://github.com/Yakima-Teng/iframe-application#readme",
"devDependencies": {
"browser-sync": "3.0.2",
"gh-pages": "6.1.1",
"gulp": "4.0.2",
"gulp-autoprefixer": "9.0.0",
"gulp-changed": "5.0.2",
"gulp-clean-css": "4.3.0",
"gulp-less": "5.0.0",
"gulp-rename": "2.0.0",
"gulp-sequence": "1.0.0"
},
"engines": {
"node": "v18.18.0"
},
"browserslist": ["last 20 versions"]
}