-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 873 Bytes
/
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": "onepage-js",
"version": "0.1.0",
"main": "dist/onepage.js",
"module": "dist/onepage.esm.js",
"type": "module",
"scripts": {
"build": "bun run rollup --config",
"build:docs": "bun run jsdoc src -c ./jsdoc.config.json",
"dev": "bun run ./dev-server.js",
"test": "bun test",
"test:dev": "bun test --watch"
},
"repository": {
"type": "git",
"url": "git@github.com:mr-ema/onepage-js.git"
},
"keywords": [
"onepage",
"slides",
"slider",
"scroll",
"swipe"
],
"files": [
"dist/onepage.js",
"dist/onepage.esm.js",
"package.json",
"README.md"
],
"license": "0BSD",
"dependencies": {},
"devDependencies": {
"@happy-dom/global-registrator": "^15.11.6",
"@rollup/plugin-terser": "^0.4.4",
"@types/bun": "^1.1.13",
"jsdoc": "~4.0.4",
"rollup": "^4.27.2"
}
}