-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.12 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.12 KB
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
{
"access": "public",
"name": "@cloudsponge/better-sharing.js",
"main": "packages/generic/better-sharing.js",
"version": "0.3.2",
"description": "Better Sharing adds an email sharing form to your page.",
"repository": {
"type": "git",
"url": "git+https://github.com/cloudsponge/better-sharing-js.git"
},
"author": "Graeme Rouse <graeme@cloudsponge.com>",
"license": "MIT",
"files": [
"dist/"
],
"scripts": {
"ci": "rm -rf node_modules && yarn install --frozen-lockfile",
"build": "rollup -c",
"test": "jest --config ./jest.config.js",
"test:coverage": "yarn test --coverage",
"lint": "yarn eslint \"./**/*.js\"",
"lint:fix": "yarn eslint --fix \"./**/*.js\"",
"audit:fix": "npm install --package-lock-only; npm audit fix --force; rm yarn.lock; yarn import; rm package-lock.json; yarn install"
},
"dependencies": {
"@cloudsponge/address-book-connector.js": "^1.2.6",
"babel-eslint": "^10.1.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"prettier": "^2.1.2"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-strip": "^2.0.0",
"@rollup/plugin-url": "^5.0.1",
"core-js": "^3.6.5",
"html-loader-jest": "^0.2.1",
"identity-obj-proxy": "^3.0.0",
"node-sass": "^6.0.0",
"postcss": "^8.3.11",
"postcss-inline-svg": "^5.0.0",
"postcss-url": "^10.1.3",
"posthtml-include": "^1.7.4",
"posthtml-minifier": "^0.1.0",
"rollup": "^2.26.11",
"rollup-plugin-html-minifier": "^1.1.0",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-posthtml-template": "^1.3.0",
"rollup-plugin-re": "^1.0.7",
"rollup-plugin-scss": "^2.6.0",
"rollup-plugin-serve": "^1.0.4",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-styles": "^3.14.1",
"rollup-plugin-uglify": "^6.0.4"
}
}