-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.59 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.59 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
{
"name": "hreftypes",
"description": "Figure out what type a href is. Useful to help resolve URI's between assets on a site",
"repository": "git://github.com/assetgraph/hreftypes.git",
"version": "1.0.1",
"license": "BSD-3-Clause",
"maintainers": [
{
"name": "Peter Müller",
"email": "munter@fumle.dk"
},
{
"name": "Andreas Lind",
"email": "andreaslindpetersen@gmail.com"
}
],
"files": [
"lib"
],
"keywords": [
"href",
"hreftype",
"assetgraph"
],
"dependencies": {},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^6.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.2.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"magicpen-prism": "3.0.2",
"mocha": "^6.0.0",
"nyc": "^14.0.0",
"offline-github-changelog": "^1.6.1",
"prettier": "~1.18.2",
"unexpected": "^11.0.0-1"
},
"main": "lib/index.js",
"types": "types.d.ts",
"scripts": {
"lint": "eslint . && prettier --check '**/*.js'",
"test": "mocha",
"ci": "npm run lint && npm run coverage",
"coverage": "NODE_ENV=test nyc --reporter=lcov --reporter=text --all -- mocha --reporter dot && echo google-chrome coverage/lcov-report/index.html",
"changelog": "offline-github-changelog --next=${npm_package_version} > CHANGELOG.md && git add CHANGELOG.md",
"preversion": "npm run changelog"
},
"nyc": {
"include": [
"lib/**"
]
}
}