forked from NickPiscitelli/Glider.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.3 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
54
55
56
{
"name": "glider-js",
"version": "1.7.7",
"description": "A fast, lightweight carousel alternative",
"main": "glider.js",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "http-server docs/",
"test": "\"echo \\\"Error: no test specified\\\" && exit 1\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/NickPiscitelli/Glider.js.git"
},
"keywords": [
"carousel",
"scrolling",
"list",
"paging"
],
"author": "Nick Piscitelli",
"license": "MIT",
"bugs": {
"url": "https://github.com/NickPiscitelli/Glider.js/issues"
},
"homepage": "https://github.com/NickPiscitelli/Glider.js#readme",
"devDependencies": {
"http-server": "^0.11.1",
"husky": "1.2.0",
"lint-staged": "8.1.0",
"prettier": "1.15.2",
"standard": "12.0.1",
"uglify-js": "^3.4.9"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"glider.js": [
"prettier --write",
"standard --fix",
"uglifyjs --compress --mangle --comments -o glider.min.js --",
"uglifyjs --compress --mangle --comments -o docs/assets/js/glider.min.js --",
"git add glider.min.js docs/assets/js/glider.min.js"
]
},
"ignore": [
"*.min.js"
]
}
}