-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.57 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
{
"name": "extendscript-bundlr",
"version": "0.4.0",
"description": "a tool for bundling Adobe ExtendScripts that use the `#include 'path/to/file'` statement",
"main": "dist/index.js",
"scripts": {
"prewatch": "rm -rf ./dist && mkdir ./dist",
"dev": "./node_modules/.bin/babel src -w -d dist/",
"build": "npm run prewatch && babel src -d dist/",
"test": "./dist/index.js -i ./test/src.jsx -o ./test/out.jsx",
"test:report": "./dist/index.js -i ./test/src.jsx -o ./test/out.jsx -r",
"test:missing": "./dist/index.js -i ./test/src.jsx -o ./test/out.jsx -m"
},
"keywords": [
"Adobe",
"ExtendScript",
"automation"
],
"contributors": [
{
"name": "Fabian 'fabiantheblind' Morón Zirfas",
"email": "[email protected]",
"url": "http://fabianmoronzirfas.me"
}
],
"license": "ISC",
"bin": {
"exsbundlr": "./dist/index.js"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "10.1.0",
"babel-preset-es2015": "6.24.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.8.0",
"eslint-config-unobtrusive": "1.2.5"
},
"dependencies": {
"abs": "^1.3.4",
"chalk": "^4.0.0",
"commander": "^5.0.0",
"file-exists": "^5.0.0",
"line-reader": "^0.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/fabiantheblind/extendscript-bundlr.git"
},
"bugs": {
"url": "https://github.com/fabiantheblind/extendscript-bundlr/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}