forked from meltingice/psd.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.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
{
"name": "psd",
"description": "A general purpose Photoshop file parser.",
"version": "3.3.0",
"main": "./dist/psd.js",
"keywords": [
"psd",
"parser",
"photoshop",
"adobe",
"reader"
],
"repository": {
"type": "git",
"url": "[email protected]:meltingice/psd.js.git"
},
"dependencies": {
"coffeescript-module": "~ 0.2.1",
"iconv-lite": "~ 0.4.4",
"jspack": "~ 0.0.3",
"lodash": "~4.17.21",
"parse-engine-data": "ownego/parseEngineData#master",
"pngjs": "3.2.0",
"rsvp": "~ 3.0.6"
},
"scripts": {
"test": "mocha test",
"docs": "node_modules/docco-husky/bin/generate lib shims",
"build": "cake compile-browser",
"generate-docs": "cake docs:generate",
"local-dev": "npm run build && rm -rf ./examples/browser/dist && cp -R ./dist ./examples/browser/dist && webpack serve"
},
"devDependencies": {
"coffee-script": "~ 1.7.1",
"acorn": "^5.1.1",
"bluebird": "^2.9.25",
"browserify": "^17.0.0",
"coffeeify": "~ 1.1.0",
"copy-webpack-plugin": "^9.0.1",
"docco-husky": "*",
"html-loader": "^2.1.2",
"mocha": "^9.1.1",
"rimraf": "~ 2.2.8",
"should": "~ 3.3.1",
"uglify-js": "^2.4.21",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.1"
}
}