-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.08 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
{
"name": "tour.js",
"description": "A walkthrough maker for your web apps",
"repository": "https://github.com/mehmetpekcan/tour.js.git",
"author": "pekcanmehmett@gmail.com",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"private": false,
"version": "0.1.16",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf ./dist && yarn rollup -c",
"build:watch": "rm -rf ./dist && yarn rollup -c -w",
"dev:docs": "cd docs && yarn dev",
"build:docs": "cd docs && yarn build"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"prettier": "^2.6.2",
"rollup": "^2.75.0",
"rollup-plugin-sass": "^1.2.12",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"smoothscroll-polyfill": "^0.4.4"
}
}