-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 987 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
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "cep-lib",
"version": "0.1.0",
"description": "JS wrapper functions to aid in the development of CEP plugins.",
"main": "index.js",
"files": [
"index.js",
"cep.js",
"csinterface.js"
],
"scripts": {
"release": "standard-version",
"build": "neutrino build",
"lint": "neutrino lint",
"test": "neutrino test"
},
"keywords": [
"cep",
"adobe-cep-extension",
"extendscript",
"adobe",
"extendscript-extensions",
"adobe plugins",
"after effects",
"premiere pro",
"photoshop",
"indesign"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@neutrinojs/jest": "^8.3.0",
"@neutrinojs/library": "^8.3.0",
"@neutrinojs/standardjs": "^8.3.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"jest-junit": "^5.1.0",
"neutrino": "^8.3.0",
"standard-version": "^4.4.0"
},
"dependencies": {
"@cep/csinterface": "^8.0.1",
"color-convert": "^1.9.2"
}
}