-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
38 lines (38 loc) · 872 Bytes
/
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
{
"name": "psd2json",
"version": "1.4.0",
"description": "Convert PSD to JSON",
"main": "index.js",
"scripts": {
"test": "npm run lint && mocha",
"lint": "eslint index.js && eslint ./test",
"lint-fix": "eslint index.js --fix && eslint ./test --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zprodev/psd2json.git"
},
"author": "zprodev <zproject.develop@gmail.com> (https://github.com/zprodev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zprodev/psd2json/issues"
},
"homepage": "https://github.com/zprodev/psd2json#readme",
"keywords": [
"psd",
"layers",
"layout",
"parse",
"jsx",
"json"
],
"dependencies": {
"mkdirp": "^0.5.1",
"psd": "^3.2.0"
},
"devDependencies": {
"eslint": "^6.7.1",
"mocha": "^6.1.4",
"rimraf": "^3.0.0"
}
}