-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "jpage",
"version": "2.0.2",
"type": "module",
"description": "Create websites as slides.",
"keywords": [
"jpage",
"pages",
"javascript",
"front-end",
"amazing pages",
"create websites",
"full page",
"slides",
"scroller"
],
"main": "./lib/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"docs": "cd docs && bundle exec jekyll serve --livereload --watch",
"docs-build": "cd docs && JEKYLL_ENV=production bundle exec jekyll b",
"minify": "npx esbuild lib/index.js --bundle --minify --outfile=lib/index.min.js && npx esbuild lib/index.css --bundle --outfile=lib/index.min.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pedro-isacss/jpage.git"
},
"author": "Pedro Isac",
"license": "MIT",
"bugs": {
"url": "https://github.com/pedro-isacss/jpage/issues"
},
"homepage": "https://github.com/pedro-isacss/jpage#readme",
"devDependencies": {
"esbuild": "^0.14.18"
}
}