-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.34 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
{
"name": "@w-vision/load-yumpu-api",
"version": "1.0.0",
"description": "A lightweight Promise-returning helper for loading the Yumpu JavaScript API.",
"author": "w-vision AG <[email protected]>",
"license": "MIT",
"homepage": "https://www.w-vision.ch",
"repository": {
"type": "git",
"url": "git://github.com/w-vision/load-yumpu-api.git"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"babelify": "^10.0.0",
"browserify": "^16.3.0",
"gzip-size-cli": "^3.0.0",
"husky": "^3.0.0",
"lint-staged": "^9.2.0",
"prettier-standard": "^9.1.1",
"rimraf": "^2.6.3",
"standard": "^13.0.2",
"tape": "^4.11.0",
"tape-run": "^6.0.0",
"terser": "^4.1.2"
},
"scripts": {
"clean": "rimraf '*.log'",
"fix": "prettier-standard '*.js'",
"lint": "standard '*.js'",
"test": "browserify -t [ babelify --presets [ @babel/preset-env ] ] test.js | tape-run",
"weight": "terser index.js --compress --mangle --toplevel | gzip-size"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"standard",
"git add"
]
},
"files": [
"index.js"
],
"keywords": [
"api",
"yumpu",
"yumpu magazines",
"yumpu-api",
"loader",
"digital magazines",
"promise"
]
}