forked from ExtendScript/extendscript-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1007 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
{
"name": "@extendscript/___path___.___moduleName___",
"version": "0.1.0",
"description": "___description___",
"main": "___moduleName___.js",
"scripts": {
"buildEnv": "curl https://raw.githubusercontent.com/ES-Collection/build-node-venv/master/build-node-venv.sh > ./.bnv.sh && chmod +x ./.bnv.sh && ./.bnv.sh && rm ./.bnv.sh",
"prepublishOnly": "npm config set scope extendscript",
"test": "node ./test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ExtendScript/extendscript-modules.git"
},
"keywords": [
"extendscript",
"extendscript-modules",
"___moduleName___"
],
"author": "extendscript.org",
"license": "MIT",
"bugs": {
"url": "https://github.com/ExtendScript/extendscript-modules/issues"
},
"homepage": "https://github.com/ExtendScript/extendscript-modules#readme",
"devDependencies": {
"@extendscript/tap-es": ">=1.0.5"
},
"peerDependencies": {
"@extendscript/modules.init": ">=2.2.0"
}
}