forked from avdeev/vanilla-sharing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.42 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "vanilla-sharing",
"description": "Small simple tool for sharing url, title, description and image to VK, Facebook, OK, G+, Twitter, email, and Mail",
"keywords": [
"sharing",
"vk",
"facebook",
"g+",
"twiiter",
"socials",
"mail"
],
"homepage": "https://github.com/avdeev/vanilla-sharing",
"bugs": "https://github.com/avdeev/vanilla-sharing/issues",
"version": "5.1.0",
"main": "dist/vanilla-sharing.umd.js",
"module": "dist/vanilla-sharing.esm.js",
"scripts": {
"precommit": "lint-staged",
"size": "size-limit",
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "eslint --ignore-path .gitignore .",
"test": "npm run lint && npm run build && npm run size && jest --coverage",
"test:watch": "jest --watchAll",
"prepare": "npm run test",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": "git@github.com:avdeev/vanilla-sharing.git",
"author": "Alexey Avdeev <aad.jerry@gmail.com>",
"license": "MIT",
"files": [
"dist"
],
"size-limit": [
{
"path": "dist/vanilla-sharing.umd.js",
"limit": "1.3 KB"
},
{
"path": "dist/vanilla-sharing.esm.js",
"limit": "1.3 KB"
}
],
"lint-staged": {
"*.js": "lint"
},
"babel": {
"env": {
"test": {
"presets": [
"env"
]
},
"development": {
"presets": [
[
"env",
{
"modules": false
}
]
]
}
}
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb-base",
"env": {
"browser": true,
"jest": true,
"es6": true
},
"settings": {
"import/resolver": "webpack"
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/main.js",
"!src/**/*.test.{js,jsx}"
],
"moduleDirectories": [
"node_modules",
"src"
],
"testRegex": "tests/.*\\.test\\.js$"
},
"devDependencies": {
"babel-eslint": "8.2.3",
"babel-preset-env": "1.6.1",
"coveralls": "3.0.1",
"eslint": "4.19.1",
"eslint-config-airbnb-base": "12.1.0",
"eslint-import-resolver-webpack": "0.9.0",
"eslint-plugin-import": "2.11.0",
"faker": "4.1.0",
"husky": "0.14.3",
"jest-cli": "22.4.3",
"lint-staged": "7.1.0",
"rollup": "0.58.2",
"rollup-plugin-babel": "3.0.4",
"size-limit": "0.17.0"
}
}