-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 2.29 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "retinize",
"version": "1.0.0",
"description": "Retinize will upscale (using nearest neighbor / pixelate) images to look correctly on retina screens.",
"author": "Matthew Callis <matthew.callis@gmail.com>",
"contributors": [
{
"name": "Matthew Callis",
"email": "matthew.callis@gmail.com"
}
],
"maintainers": [
{
"name": "Matthew Callis",
"email": "matthew.callis@gmail.com",
"web": "https://github.com/MatthewCallis/retinize"
}
],
"main": "dist/retinize.js",
"files": [
"dist/retinize.js"
],
"homepage": "https://github.com/MatthewCallis/retinize",
"repository": {
"type": "git",
"url": "https://github.com/MatthewCallis/retinize"
},
"bugs": {
"url": "https://github.com/MatthewCallis/retinize/issues"
},
"keywords": [
"pixelate",
"retina",
"upscale",
"nearest neighbor"
],
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-plugin-external-helpers": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-es2016": "^6.11.3",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"codeclimate-test-reporter": "^0.3.3",
"coveralls": "^2.11.13",
"dirty-chai": "^1.2.2",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-mocha": "4.5.1",
"eslint-plugin-react": "^6.2.2",
"istanbul": "^0.4.5",
"jquery": "^3",
"npm-bump": "^0.0.20",
"precommit-hook-eslint": "^3.0.0",
"rollup": "^0.35.11",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-json": "^2.0.2",
"uglify-js": "^2.7.3"
},
"directories": {},
"preferGlobal": false,
"private": false,
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://opensource.org/licenses/MIT"
}
],
"jam": {
"dependencies": {}
},
"scripts": {
"lint": "eslint src",
"local-web-server": "ruby -run -e httpd . -p 8181",
"make": "node rollup.config.js",
"validate": "npm ls",
"uglify": "uglifyjs dist/retinize.js > dist/retinize.min.js"
},
"github": "https://github.com/MatthewCallis/retinize",
"pre-commit": [
"lint",
"validate"
]
}