-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.42 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
{
"name": "ag-psd",
"version": "14.3.7",
"description": "Library for reading and writing PSD files",
"main": "dist/index.js",
"module": "dist-es/index.js",
"es2015": "dist-es/index.js",
"browser": "dist/index.js",
"sideEffects": true,
"scripts": {
"test": "gulp test",
"test2": "mocha -R dot dist/test",
"dev": "gulp dev --tests",
"lint": "tslint -c tslint.json src/ts/**/*.ts",
"build": "gulp build && browserify dist/index.js --standalone agPsd -o dist/bundle.js",
"rollup": "rollup --format=cjs --external base64-js --file=dist-es/bundle.js --sourcemap --sourcemapFile dist-es/bundle.js.map dist-es/index.js"
},
"jspm": {
"main": "dist/index.js",
"jspmNodeConversion": false,
"dependencies": {
"base64-js": "^1.3.1"
}
},
"keywords": [
"psd",
"photoshop"
],
"author": "Agamnentzar",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^8.2.2",
"@types/node": "^14.17.0",
"browserify": "^17.0.0",
"canvas": "^2.8.0",
"chai": "^4.3.4",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^3.0.0",
"gulp-spawn-mocha": "^6.0.0",
"gulp-typescript": "^5.0.1",
"merge2": "^1.4.1",
"mocha": "^8.4.0",
"remap-istanbul": "^0.13.0",
"source-map-support": "^0.5.19",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
},
"dependencies": {
"@types/base64-js": "^1.3.0",
"base64-js": "^1.5.1"
}
}