-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.67 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
{
"name": "is-webp-extended",
"version": "1.0.3",
"description": "Extended version of is-webp package which supports Animated WebP",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.d.ts",
"index.js",
"index.js.map"
],
"dependencies": {},
"devDependencies": {
"@prescott/commitlint-preset": "1.0.3",
"@prescott/semantic-release-config": "1.0.1",
"@prescott/tslint-preset": "1.0.1",
"@rollup/plugin-commonjs": "22.0.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-typescript": "8.3.2",
"browserstack-local": "1.5.0",
"husky": "7.0.4",
"intern": "4.10.1",
"rollup": "2.72.0",
"semantic-release": "19.0.2",
"tslint": "6.1.3",
"typescript": "4.6.4"
},
"scripts": {
"clean": "rm -f index.d.ts index.js index.js.map",
"build": "npm run clean && rollup -c rollup.config.js",
"prepublishOnly": "npm run build",
"pretest": "npm run clean && npm run build",
"test": "intern",
"posttest": "npm run clean",
"lint": "tslint -c tslint.json index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mooyoul/is-webp-extended.git"
},
"keywords": [
"webp"
],
"author": "MooYeol Prescott Lee <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mooyoul/is-webp-extended/issues"
},
"homepage": "https://github.com/mooyoul/is-webp-extended#readme",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@prescott/commitlint-preset"
]
}
}