-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 1.67 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
{
"name": "assetgraph-sprite",
"description": "AssetGraph plugin for creating sprites from background images",
"repository": "git://github.com/One-com/assetgraph-sprite.git",
"version": "3.2.0",
"license": "BSD-3-Clause",
"maintainers": [
{
"name": "Andreas Lind",
"email": "andreaslindpetersen@gmail.com"
},
{
"name": "Peter Müller",
"email": "munter@fumle.dk"
}
],
"files": [
"lib"
],
"devDependencies": {
"assetgraph": "^7.0.1",
"coveralls": "^3.0.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^10.0.1",
"eslint-plugin-n": "^15.1.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^6.0.0",
"lodash.pluck": "^3.1.2",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"offline-github-changelog": "^3.0.0",
"prettier": "~3.0.0",
"sinon": "^15.0.0",
"unexpected": "^13.0.0",
"unexpected-image": "^4.0.0",
"unexpected-sinon": "^11.0.1",
"urltools": "^0.4.1"
},
"directories": {
"lib": "./lib"
},
"scripts": {
"lint": "eslint . && prettier --check '**/*.{js,json,md}'",
"test": "mocha",
"coverage": "NODE_ENV=development nyc --reporter=lcov --reporter=text --all -- npm run test && echo google-chrome coverage/lcov-report/index.html",
"test:ci": "npm run coverage",
"preversion": "offline-github-changelog --next=${npm_new_version} > CHANGELOG.md && git add CHANGELOG.md"
},
"main": "lib/spriteBackgroundImages.js",
"dependencies": {
"canvas": "^2.3.1"
},
"nyc": {
"include": [
"lib/**"
]
}
}