-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.75 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
{
"name": "hypertag",
"version": "0.0.6",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.mjs",
"source": "hypertag.js",
"scripts": {
"build": "rimraf dist && microbundle",
"test": "nyc ava",
"prepublish": "npm test && npm run build",
"pretest": "xo",
"release": "standard-version"
},
"keywords": [],
"author": "Andreas Pizsa <hopster@gmail.com> (https://github.com/AndreasPizsa)",
"repository": "AndreasPizsa/hypertag",
"license": "MIT",
"devDependencies": {
"@andreaspizsa/eslint-config-xo": "^0.2.0",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^7.1.2",
"ava": "^4.0.1",
"benchmark": "^2.1.4",
"cheerio": "^1.0.0-rc.2",
"coveralls": "^3.0.2",
"fast-html": "^0.1.2",
"got": "^9.3.2",
"html-parse-stringify2": "^2.0.1",
"html-tag-parser": "^1.0.0",
"htmlparser2": "^3.10.0",
"husky": "^1.2.0",
"microbundle": "^0.14.2",
"microtime": "^3.0.0",
"nyc": "^15.1.0",
"parse5": "^5.1.0",
"rimraf": "^2.6.2",
"standard-version": "^9.3.2",
"xo": "^0.47.0"
},
"xo": {
"semicolon": false,
"space": true,
"rules": {
"unicorn/prefer-module": 0,
"padding-line-between-statements": 0,
"comma-dangle": 0
},
"extends": [
"@andreaspizsa/eslint-config-xo"
]
},
"description": "",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"standard-version": {
"scripts": {
"prerelease": "npm test && npm run build"
}
},
"postinstaller": {
"add your config here": true,
"see": "https://npmjs.com/postinstaller#readme"
}
}