-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
41 lines (41 loc) · 1.41 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
{
"name": "light-modal",
"version": "1.2.1",
"description": "A new lightweight css modal.",
"main": "dist/css/light-modal.css",
"repository": {
"type": "git",
"url": "git+https://github.com/hunzaboy/Light-Modal.git"
},
"style": "dist/css/light-modal.css",
"author": "Aslam Shah",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^9.7.6",
"clean-css-cli": "^4.3.0",
"node-sass": "^4.13.1",
"parcel-bundler": "^1.12.4",
"postcss-cli": "^7.1.0",
"rimraf": "^3.0.2"
},
"scripts": {
"build": "npm run build-clean && npm run build-sass && npm run build-autoprefix && npm run build-cleancss",
"build-autoprefix": "postcss --use autoprefixer --map false --output dist/css/light-modal.css dist/css/light-modal.css",
"build-cleancss": "cleancss -o dist/css/light-modal.min.css dist/css/light-modal.css",
"build-clean": "rimraf dist",
"build-sass": "node-sass --output-style expanded --source-map true src/scss/light-modal.scss dist/css/light-modal.css",
"deploy": "npm run build",
"start": "npm run build-sass -- --watch",
"start-demo": "parcel index.html -d docs --open",
"build-demo": "parcel build index.html -d docs --public-url ./"
},
"dependencies": {},
"bugs": {
"url": "https://github.com/hunzaboy/Light-Modal/issues"
},
"homepage": "https://github.com/hunzaboy/Light-Modal#readme",
"keywords": [
"css",
"modal"
]
}