-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.52 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"title": "Techspardha2017",
"version": "1.0.0",
"description": "Front-end of the Techspardha 2017 website.",
"contributors": [
{
"name": "Divya Mamgai",
"email": "[email protected]",
"url": "https://github.com/divyamamgai"
},
{
"name": "Kaushik Sarma",
"email": "[email protected]",
"url": "https://github.com/kaushikSarma"
}
],
"main": "index.js",
"dependencies": {
"jquery": "latest",
"gsap": "latest",
"bootstrap": "latest"
},
"devDependencies": {
"jshint": "latest",
"fuse": "latest",
"uglify-js": "latest",
"stylus": "latest",
"nib": "latest",
"clean-css": "latest",
"rimraf": "latest"
},
"scripts": {
"lint": "jshint src/js",
"prebuild:js": "npm run lint",
"build:js": "fuse -i src/js/Main.js -o dist/resources/js/Main.js",
"build:css": "stylus -u nib src/styl/Main.styl -o dist/resources/css/Main.css",
"build": "npm run build:js && npm run build:css",
"predeploy": "npm run clean",
"deploy": "cp -r dist/* deploy/",
"postdeploy": "uglifyjs deploy/resources/js/Main.js > deploy/resources/js/Main.min.js -mc && rimraf deploy/resources/js/Main.js",
"clean": "rimraf deploy/ && mkdir deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gawdsnitk/Techspardha2017.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/gawdsnitk/Techspardha2017/issues"
},
"homepage": "https://github.com/gawdsnitk/Techspardha2017#readme"
}