-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
71 lines (71 loc) · 2.47 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
{
"name": "node-sprite-generator",
"version": "0.10.2",
"description": "Generates image sprites and their spritesheets (css, stylus, sass, scss or less) from sets of images. Supports retina sprites. Provides express middleware and grunt task.",
"main": "lib/index.js",
"dependencies": {
"bin-pack": "1.0.2",
"bluebird": "3.5.1",
"glob": "7.1.2",
"jimp": "0.2.27",
"mkdirp": "0.5.1",
"ramda": "0.25.0",
"underscore": "1.9.1"
},
"optionalDependencies": {
"canvas": "1.6.11",
"gm": "1.23.1"
},
"devDependencies": {
"base64-arraybuffer": "0.1.5",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"eslint": "5.2.0",
"istanbul": "0.4.5",
"mocha": "5.2.0",
"resemblejs": "2.10.3",
"sinon": "6.1.4",
"sinon-chai": "3.2.0",
"sinon-test": "2.2.1",
"coveralls": "3.0.2",
"karma": "2.0.5",
"karma-webpack": "3.0.0",
"karma-mocha": "1.3.0",
"karma-sourcemap-loader": "0.3.7",
"karma-firefox-launcher": "1.1.0",
"webpack": "4.16.3",
"babel-loader": "7.1.5",
"exports-loader": "0.7.0",
"babel-core": "6.26.3",
"babel-plugin-static-fs": "1.1.0"
},
"scripts": {
"lint": "eslint .",
"test:unit": "istanbul test _mocha test/unit -- --recursive --reporter spec",
"test:unit:browser": "karma start --single-run --browsers Firefox --grep=test/unit/**/*.js",
"test:unit:with-coverage": "npm run test:unit --coverage && npm run coverage:report:html",
"test:functional": "istanbul test _mocha test/functional/node.js -- --recursive --reporter spec",
"test:functional:browser": "karma start --single-run --browsers Firefox --grep=test/functional/browser.js",
"coverage:report:html": "istanbul report --dir build/coverage html",
"test": "npm run lint && npm run test:unit:with-coverage && npm run test:unit:browser && npm run test:functional && npm run test:functional:browser",
"coveralls": "cat ./build/coverage/lcov.info | coveralls"
},
"keywords": [
"sprite",
"sprites",
"generator",
"middleware",
"css",
"stylus",
"less",
"sass",
"scss",
"grunt",
"retina"
],
"repository": {
"type": "git",
"url": "git://github.com/selaux/node-sprite-generator"
},
"license": "MIT"
}