-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.68 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
{
"name": "assetgraph-hashfiles",
"description": "Assetgraph-based function to rename files for immutable HTTP caching",
"repository": "git://github.com/assetgraph/assetgraph-hashfiles.git",
"version": "1.1.1",
"license": "BSD-3-Clause",
"maintainers": [
{
"name": "Andreas Lind",
"email": "andreaslindpetersen@gmail.com"
},
{
"name": "Peter Müller",
"email": "munter@fumle.dk"
}
],
"files": [
"lib"
],
"dependencies": {
"urltools": "^0.4.1"
},
"devDependencies": {
"assetgraph": "^6.0.0",
"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.2.2",
"nyc": "^14.0.0",
"offline-github-changelog": "^1.6.1",
"prettier": "~1.18.2",
"sinon": "^7.0.0",
"unexpected": "^11.0.0-1",
"unexpected-assetgraph": "^1.1.2",
"unexpected-dom": "^4.14.2",
"unexpected-set": "^2.0.1",
"unexpected-sinon": "^10.11.2"
},
"main": "lib/hashfiles.js",
"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",
"preversion": "offline-github-changelog --next=${npm_new_version} > CHANGELOG.md && git add CHANGELOG.md"
},
"nyc": {
"include": [
"lib/**"
]
}
}