-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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
{
"name": "social-share-button",
"version": "3.0.2",
"description": "Sharing button behaviour.",
"main": "index.js",
"module": "dist/social-share-button.js",
"scripts": {
"start": "scriptkit",
"dev": "scriptkit dev",
"build": "scriptkit build",
"test": "echo \"No tests available\"",
"lint": "npx eslint index.js",
"prepublishOnly": "npm run lint && scriptkit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firstandthird/social-share-button.git"
},
"keywords": [
"social",
"share"
],
"author": "First+Third <[email protected]> (http://firstandthird.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/firstandthird/social-share-button/issues"
},
"homepage": "https://github.com/firstandthird/social-share-button#readme",
"dependencies": {
"domassist": "2.3.2",
"domodule": "^8.1.0"
},
"devDependencies": {
"eslint-config-firstandthird": "^6.0.3",
"eslint-plugin-import": "^2.29.1",
"scriptkit": "^3.0.0"
},
"eslintConfig": {
"env": {
"browser": true
},
"extends": "firstandthird"
},
"scriptkit": {
"test": {
"enabled": false
},
"serve": {
"enabled": true
},
"files": {
"dist/social-share-button.js": "index.js"
}
}
}