This repository has been 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
/
Copy pathpackage.json
77 lines (77 loc) · 1.87 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
{
"name": "snabbdom-decontextify",
"version": "4.0.0",
"description": "Get a decontextified (sans data etc.) VNode from a snabbdom VNode",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"release": "standard-version",
"lint": "eslint .",
"transpile": "tsc",
"unit": "ava",
"test": "run-s lint transpile 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-decontextify.git"
},
"keywords": [
"snabbdom",
"vnode",
"context",
"sanitize"
],
"author": "Shahar Or <[email protected]> (https://mightyi.am/)",
"contributors": [
"Yarom Shoval <[email protected]>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/mightyiam/snabbdom-decontextify/issues"
},
"homepage": "https://github.com/mightyiam/snabbdom-decontextify#readme",
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@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",
"snabbdom": "0.7.4",
"standard-version": "8.0.2",
"tsconfigs": "5.0.0",
"typescript": "3.9.6"
},
"files": [
"lib/index.d.ts",
"lib/index.js",
"lib/index.js.map",
"src/index.ts"
],
"dependencies": {
"snabbdom-selector": "^4.2.0"
},
"directories": {
"lib": "lib"
}
}