-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.2 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
{
"name": "adobe-cep-polyfill",
"version": "0.1.0",
"description": "Polyfills the CEPEngine global variables―allowing your plugin to run in the browser",
"main": "index.js",
"scripts": {
"get-csinterface": "curl -O -L 'https://raw.githubusercontent.com/Adobe-CEP/CEP-Resources/master/CEP_9.x/CSInterface.js' && mv CSInterface.js tests/CSInterface.js",
"create-export": "echo \"module.exports = CSInterface;\" >> tests/CSInterface.js",
"convert-to-cjs": "npx rollup index.js --file tests/index.testable.js --format cjs --silent",
"test:setup": "npm run convert-to-cjs & npm run get-csinterface && npm run create-export",
"test": "npm run convert-to-cjs & npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fuse-fonts/adobe-cep-polyfill.git"
},
"keywords": [
"adobe",
"cep",
"polyfill",
"cepengine",
"csinterface"
],
"files": [
"index.js"
],
"author": "Rory Duncan",
"license": "ISC",
"bugs": {
"url": "https://github.com/fuse-fonts/adobe-cep-polyfill/issues"
},
"homepage": "https://github.com/fuse-fonts/adobe-cep-polyfill#readme",
"devDependencies": {
"jest": "^25.1.0",
"rollup": "^1.32.0"
}
}