-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
50 lines (50 loc) · 1.67 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
49
50
{
"name": "eme-encryption-scheme-polyfill",
"description": "A polyfill for the encryptionScheme field in EME",
"version": "2.1.6",
"license": "Apache-2.0",
"author": "Google",
"homepage": "https://github.com/shaka-project/eme-encryption-scheme-polyfill#readme",
"maintainers": [
{
"name": "Joey Parrish",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/shaka-project/eme-encryption-scheme-polyfill/issues"
},
"scripts": {
"test": "npm run lint && npm run closure-compiler-check && npm run build",
"lint": "eslint index.js",
"closure-compiler-check": "google-closure-compiler -O ADVANCED --generate_exports --js_output_file /dev/null --jscomp_error '*' closure-compiler-check/* index.js",
"build": "browserify index.js -s EncryptionSchemePolyfills -t [ babelify --presets [ @babel/preset-env ] ] -t stripify -p tinyify -p browserify-header -o dist/eme-encryption-scheme-polyfill.js",
"prepublishOnly": "npm test"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/preset-env": "^7.16.11",
"babel-plugin-transform-async-to-promises": "^0.8.18",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"browserify-header": "^1.1.0",
"eslint": "^8.8.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jsdoc": "^37.8.2",
"google-closure-compiler": "^20220202.0.0",
"stripify": "^6.0.0",
"tinyify": "^3.0.0"
},
"main": "index.js",
"files": [
"dist/eme-encryption-scheme-polyfill.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/shaka-project/eme-encryption-scheme-polyfill.git"
},
"keywords": [
"EME",
"polyfill"
]
}