-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.05 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
{
"name": "webpinfo",
"version": "2.0.0",
"description": "Get information of WebP Image (Supports Animated WebP also!)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rm -rf lib",
"build": "npm run clean && tsc",
"prepublishOnly": "npm run build",
"lint": "tslint -c tslint.json '{examples,src,test}/**/*.ts'",
"test": "TS_NODE_PROJECT=tsconfig.test.json nyc mocha -R spec test/**/*.{e2e,spec}.ts"
},
"nyc": {
"require": [
"ts-node/register",
"source-map-support/register"
],
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"reporter": [
"lcov",
"text"
],
"all": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/mooyoul/node-webpinfo.git"
},
"keywords": [
"webp",
"image",
"webpinfo"
],
"author": "MooYeol Prescott Lee <mooyoul@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mooyoul/node-webpinfo/issues"
},
"homepage": "https://github.com/mooyoul/node-webpinfo#readme",
"devDependencies": {
"@types/chai": "4.3.20",
"@types/debug": "4.1.12",
"@types/mocha": "5.2.7",
"@types/node": "10.17.60",
"@types/request": "2.48.12",
"@types/sinon": "7.5.2",
"@types/url-regex": "5.0.0",
"@vingle/commitlint-preset": "1.0.3",
"@vingle/semantic-release-config": "1.0.5",
"@vingle/tslint-preset": "1.0.1",
"chai": "4.5.0",
"husky": "4.3.8",
"mocha": "6.2.3",
"nyc": "15.1.0",
"sinon": "7.5.0",
"source-map-support": "0.5.21",
"ts-node": "8.10.2",
"tslint": "5.20.1",
"typescript": "3.9.10"
},
"dependencies": {
"debug": "^4.1.1",
"request": "^2.88.0",
"stream-parser": "^0.3.1",
"thunks": "^4.9.5",
"url-regex": "^5.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@vingle/commitlint-preset"
]
}
}