forked from runegan/jsxbin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.1 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
{
"name": "jsxbin",
"version": "2.2.0",
"description": "Convert jsx ExtendScript files into jsxbin files using ExtendScript Toolkit",
"keywords": [
"after effects",
"extendscript",
"illustrator",
"indesign",
"jsxbin",
"photoshop"
],
"bugs": "https://github.com/runegan/jsxbin/issues",
"license": "MIT",
"author": "Rune Gangsø <[email protected]> (http://runegan.no)",
"files": [
"index.js",
"command.js",
"src/*",
"esdebugger-core-mac.tar.gz",
"esdebugger-core-win.tar.gz",
"bin/*"
],
"main": "index.js",
"bin": {
"jsxbin": "./command.js"
},
"repository": "github:runegan/jsxbin",
"scripts": {
"test": "eslint . && mocha",
"postinstall": "node bin/postinstall.js"
},
"dependencies": {
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.1",
"glob": "^7.1.6",
"mkdirp": "^1.0.4",
"winston": "^3.3.3"
},
"devDependencies": {
"eslint": "^7.19.0",
"eslint-config-runegan": "^1.2.0",
"mocha": "^8.2.1",
"mz": "^2.7.0",
"rimraf": "^3.0.2"
},
"os": [
"darwin",
"win32"
]
}