This repository has been archived by the owner on Jul 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.15 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": "js.node.blurry",
"version": "1.0.0",
"description": "Blurry load effect for picture elements. Node module to encode image src to base64 and wrap in svg base64 image",
"devDependencies": {
"@remy/snap": "^1.1.1",
"chai": "^4.2.0",
"compression": "^1.7.4",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"express": "^4.17.1",
"express-minify": "^1.0.0",
"highlight.js": "^10.1.2",
"html-entities": "^1.3.1",
"istanbul": "^0.4.5",
"jsdoc": "^3.6.4",
"lazysizes": "^5.2.1",
"mocha": "^5.2.0",
"picturefill": "^3.0.3",
"pretty": "^2.0.0"
},
"scripts": {
"start": "npm install && node ./example/server.js",
"dev": "node ./example/server.js",
"dist": "npm run test-cover && npm run doc",
"doc": "npm run doc-clean && npm run doc-example && npm run doc-jsdoc && npm run doc-cover",
"doc-clean": "rm -rf ./docs/*",
"doc-jsdoc": "node_modules/jsdoc/jsdoc.js --readme ./README.md --configure ./jsdoc.json --destination ./docs/jsdoc ./lib/*",
"doc-example": "node ./example/server.js & echo $! > .pid; sleep 1 && node_modules/@remy/snap/cli/index.js http://localhost:3333 -o docs; kill $(cat .pid); rm .pid; cp -R ./example/static/img ./docs/static",
"doc-cover": "mkdir ./docs/coverage; cp -R ./coverage/lcov-report/* ./docs/coverage/",
"test": "npm run lint && npm run dist",
"test-unit": "NODE_ENV=test mocha './lib/*.spec.js'",
"test-cover": "istanbul cover _mocha $(find ./lib -name \"*.spec.js\" -not -path \"./node_modules/*\")",
"lint": "node_modules/eslint/bin/eslint.js index.js && node_modules/eslint/bin/eslint.js ./lib/*.js"
},
"keywords": [
"onload",
"effect",
"blur",
"blurry",
"picture",
"image",
"animation",
"base64",
"node",
"node.js"
],
"main": "index.js",
"author": "Simon Gattner <npm@0x38.de>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/exiguus/js.node.blurry.git"
},
"engines": {
"node": ">= 10.0.0",
"npm": ">= 6.0.1"
}
}