-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
38 lines (38 loc) · 1.1 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
{
"name": "webtour",
"version": "1.1.0",
"description": "A light-weight user's step-by-step guide for your website using Vanilla JS.",
"main": "src/index.js",
"scripts": {
"minify-css": "npx cleancss -o dist/webtour.min.css src/webtour.css",
"minify-js": "npx babel dist/webtour.js --out-file dist/webtour.min.js --presets minify",
"build": "rollup -c && npm run minify-js && npm run minify-css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/votch18/WebTour.git"
},
"keywords": [
"\"web",
"tour\"",
"\"user's",
"walkthrough\""
],
"author": "JM de Leon <votch22@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/votch18/WebTour/issues"
},
"homepage": "https://github.com/votch18/WebTour#readme",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-node-resolve": "^11.0.0",
"babel-preset-minify": "^0.5.1",
"clean-css-cli": "^4.3.0",
"rollup": "^2.34.2"
}
}