-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "GreenTheGene",
"version": "1.0.0",
"description": "website for green the gene",
"contributors": [
{
"name": "Narendra Kumawat",
"email": "[email protected]"
},
{
"name": "Rishabh Chanana",
"email": "[email protected]"
}
],
"dependencies": {
"jquery": "latest",
"gsap": "latest",
"bootstrap": "latest"
},
"devDependencies": {
"autoprefixer": "latest",
"clean-css": "latest",
"jshint": "latest",
"rimraf": "latest",
"postcss-cli": "latest",
"uglify-js": "latest",
"stylus": "latest"
},
"scripts": {
"lint": "jshint src/js",
"clean": "rimraf dist",
"prebuild:js": "npm run lint",
"build:js": "cp src/js/* dist/resources/js/",
"build": "npm run build:js",
"predeploy": "rimraf deploy/ && mkdir deploy",
"deploy": "cp -r dist/* deploy/",
"postdeploy": "for %i in (deploy/resources/js/*) do uglifyjs deploy/resources/js/%i > deploy/resources/js/%~ni.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gawdsnitkkr/Green-the-gene.git"
},
"license": "MIT"
}