forked from zenoamaro/psd-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (70 loc) · 1.56 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
{
"name": "psd-viewer",
"version": "0.1.0",
"description": "A simple photoshop document viewer",
"author": "zenoamaro <zenoamaro@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/zenoamaro/psd-viewer",
"private": true,
"bugs": {
"url": "https://github.com/zenoamaro/psd-viewer/issues",
"email": "zenoamaro@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/zenoamaro/psd-viewer.git"
},
"main": "lib/index.js",
"browser": "dist/scripts.js",
"scripts": {
"test": "make test",
"docs": "make docs",
"build": "make build",
"clean": "make clean"
},
"engines": {
"node": ">= 0.11.x",
"iojs": ">= 1.0.x"
},
"keywords": [
"psd",
"layers",
"images"
],
"dependencies": {
"react": "^0.12.2"
},
"devDependencies": {
"babel": "^4.6.6",
"babel-core": "^4.6.6",
"babel-eslint": "^1.0.13",
"babel-loader": "^4.0.0",
"benchmark": "^1.0.0",
"csso": "^1.3.11",
"eslint": "^0.15.1",
"gulp": "^3.8.11",
"gulp-accord": "^0.1.0",
"gulp-if": "^1.2.5",
"gulp-rename": "^1.2.0",
"gulp-util": "^3.0.4",
"gulp-watch": "^4.1.1",
"gulp-webpack": "^1.3.0",
"gulp-webserver": "^0.9.0",
"istanbul": "^0.3.7",
"jsdoc": "^3.3.0-beta1",
"json-loader": "^0.5.1",
"lodash": "^3.3.1",
"mocha": "^2.1.0",
"nib": "^1.1.0",
"rimraf": "^2.3.1",
"should": "^5.1.0",
"stylus": "^0.50.0",
"webpack": "^1.7.2"
},
"files": [
"dist",
"LICENSE",
"README.md",
"CHANGELOG.md"
]
}