forked from ExtendScript/extendscript-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.64 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
{
"name": "@extendscript/aes.patch.json.validate",
"version": "1.0.1",
"description": "Adds `validate()` to JSON. Validate a JSON objects to Schema.",
"main": "validate.js",
"scripts": {
"node-env": "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",
"polyfill",
"shim",
"json",
"validate"
],
"author": "extendscript.org",
"license": "MIT",
"bugs": {
"url": "https://github.com/ExtendScript/extendscript-modules/issues"
},
"contributors": [
"Sorin Iclanzan (https://github.com/iclanzan/jassi)"
],
"homepage": "https://github.com/ExtendScript/extendscript-modules#readme",
"devDependencies": {
"@extendscript/aes.patch.json": ">=1.0.0",
"@extendscript/aes.patch.array.foreach": ">=2.0.0",
"@extendscript/aes.patch.array.isarray": ">=2.0.0",
"@extendscript/aes.patch.array.indexof": ">=2.0.0",
"@extendscript/aes.patch.object.keys": ">=2.0.0",
"@extendscript/tap-es": ">=1.0.5",
"build-node-venv": "^1.0.3",
"minimist": "^1.2.0"
},
"peerDependencies": {
"@extendscript/aes.patch.json": ">=1.0.0",
"@extendscript/aes.patch.array.foreach": ">=2.0.0",
"@extendscript/aes.patch.array.isarray": ">=2.0.0",
"@extendscript/aes.patch.array.indexof": ">=2.0.0",
"@extendscript/aes.patch.object.keys": ">=2.0.0"
}
}