-
Notifications
You must be signed in to change notification settings - Fork 505
/
package.json
35 lines (35 loc) · 1.13 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
{
"name": "chardin.js",
"version": "0.2.0",
"description": "Simple overlay instructions for your apps.",
"main": "chardinjs.js",
"directories": {
"example": "example"
},
"scripts": {
"build:css": "node-sass -o . --output-style nested --source-map chardinjs.css.map chardinjs.scss",
"build:min.css": "node-sass -o . --output-style compressed --source-map chardinjs.min.css.map chardinjs.scss chardinjs.min.css",
"build:js": "terser -o chardinjs.min.js -m -c --comments false --source-map filename=chardinjs.min.js.map --source-map includeSources --source-map url=chardinjs.min.js.map chardinjs.js",
"build": "npm run build:css && npm run build:min.css && npm run build:js"
},
"repository": {
"type": "git",
"url": "git://github.com/wprl/chardin.js.git"
},
"keywords": [
"overlay"
],
"author": "Pablo Fernandez",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/heelhook/chardin.js/issues"
},
"homepage": "http://heelhook.github.io/chardin.js/",
"dependencies": {
"jquery": "^3.5.1"
},
"devDependencies": {
"node-sass": "9.0.0",
"terser": "4.8.1"
}
}