-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.14 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
{
"name": "Trail",
"version": "1.0.0",
"description": "Plugin Description",
"keywords": [
"jquery-plugin",
"jquery",
"plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/divyamamgai/Trail.git"
},
"bugs": {
"url": "https://github.com/divyamamgai/Trail/issues"
},
"author": {
"name": "Divya Mamgai",
"email": "[email protected]",
"url": "https://github.com/divyamamgai"
},
"homepage": "http://divyamamgai.github.io/Trail",
"contributors": [
{
"name": "Divya Mamgai",
"email": "[email protected]",
"url": "https://github.com/divyamamgai"
}
],
"license": "MIT",
"dependencies": {
"jquery": "latest",
"gsap": "latest"
},
"devDependencies": {
"jshint": "latest",
"fuse": "latest",
"uglify-js": "latest",
"rimraf": "latest"
},
"scripts": {
"lint": "jshint src/js",
"prebuild:js": "npm run lint",
"build:js": "fuse -i src/js/Trail.js -o dist/js/Trail.js",
"postbuild:js": "uglifyjs dist/js/Trail.js > dist/js/Trail.min.js -mc --comments",
"build": "npm run build:js",
"clean": "rimraf dist"
}
}