-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.08 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.08 KB
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
{
"name": "@extendscript/aes.patch.array.find",
"version": "2.0.0",
"description": "The `find()` method returns the value of the first element in the array that satisfies the provided testing function. Otherwise undefined is returned.",
"main": "find.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",
"array",
"find"
],
"author": "extendscript.org",
"license": "MIT",
"bugs": {
"url": "https://github.com/ExtendScript/extendscript-modules/issues"
},
"homepage": "https://github.com/ExtendScript/extendscript-modules#readme",
"devDependencies": {
"build-node-venv": "^1.0.3",
"minimist": "^1.2.0",
"@extendscript/tap-es": ">=1.0.5"
}
}