This repository has been archived by the owner on May 29, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 243
/
Copy pathpackage.json
62 lines (62 loc) · 1.7 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
57
58
59
60
61
62
{
"name": "social-likes",
"version": "3.1.3",
"description": "Beautiful social “like” buttons with counters for jQuery",
"homepage": "https://github.com/sapegin/social-likes",
"author": {
"name": "Artem Sapegin",
"url": "http://sapegin.me/"
},
"repository": {
"type": "git",
"url": "git://github.com/sapegin/social-likes.git"
},
"bugs": {
"url": "https://github.com/sapegin/social-likes/issues"
},
"license": "MIT",
"main": "src/social-likes.js",
"files": [
"src",
"dist",
"contrib"
],
"engines": {
"node": ">=4"
},
"dependencies": {
"jquery": ">=1.8"
},
"devDependencies": {
"autoprefixer-stylus": "~0.3.0",
"csso-stylus": "0.0.3",
"eslint": "~4.6.1",
"eslint-config-tamia": "~4.2.1",
"eslint-plugin-prettier": "^2.2.0",
"gh-pages": "~0.8.0",
"grunt": "~1.0.1",
"grunt-cli": "~1.2.0",
"grunt-contrib-concat": "~1.0.1",
"grunt-contrib-connect": "~1.0.2",
"grunt-contrib-imagemin": "~2.0.1",
"grunt-contrib-stylus": "~1.2.0",
"grunt-contrib-uglify": "~3.0.1",
"grunt-contrib-watch": "~1.0.0",
"grunt-csso": "~2.2.0",
"grunt-modernizr": "~1.0.2",
"grunt-replace": "~1.0.1",
"grunt-sweet": "~0.2.2",
"grunt-webfont": "~1.6.0",
"load-grunt-tasks": "~3.5.2",
"prettier": "^1.6.1"
},
"scripts": {
"build": "grunt",
"test": "eslint src && grunt",
"lint": "eslint src --fix",
"publish": "npm run update-gh-pages && npm run build-gh-pages",
"update-gh-pages": "mkdir -p docs/src && cp dist/* docs/src/ && cp src/social-likes.js docs/src/",
"build-gh-pages": "cd gh-pages && grunt && cd ..",
"make-debug-symlinks": "ln -s . docs/social-likes"
}
}