This repository was archived by the owner on Jul 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "snabbdom-shields-badge",
"version": "3.0.3",
"description": "Makes Shields.io badge VNodes.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"release": "standard-version",
"lint": "eslint .",
"compile": "tsc",
"unit": "nyc ava",
"test": "run-s lint compile unit"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run test"
}
},
"ava": {
"require": [
"esm"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mightyiam/snabbdom-shields-badge.git"
},
"keywords": [
"snabbdom",
"shields",
"shields.io",
"badge",
"badges",
"vnode"
],
"author": "Shahar Or <mightyiampresence@gmail.com> (https://mightyi.am/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/mightyiam/snabbdom-shields-badge/issues"
},
"homepage": "https://github.com/mightyiam/snabbdom-shields-badge#readme",
"files": [
"lib/index.d.ts",
"lib/index.js",
"lib/index.js.map",
"src/index.ts"
],
"devDependencies": {
"@commitlint/cli": "9.1.1",
"@commitlint/travis-cli": "9.1.1",
"@typescript-eslint/eslint-plugin": "3.6.1",
"ava": "3.10.1",
"crazy-commits": "1.0.4",
"eslint": "7.4.0",
"eslint-config-standard-with-typescript": "18.0.2",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"eslint-plugin-typescript": "0.14.0",
"esm": "3.2.25",
"husky": "4.2.5",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"nyc-config-100": "1.0.1",
"standard-version": "8.0.2",
"tsconfigs": "5.0.0",
"typescript": "3.9.6"
},
"dependencies": {
"shields-badge-data": "^4.0.1",
"snabbdom": "^0.7.4"
},
"nyc": {
"all": "false",
"extends": "nyc-config-100",
"extension": [
".ts"
],
"exclude": [
"**/*.test.*",
"commitlint.config.js"
]
}
}