-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
70 lines (70 loc) · 1.58 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@feedsbrain/pssh-tools",
"version": "1.2.1",
"description": "Tools to generate PSSH Data and PSSH Box",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "eslint **/*.ts && tsc -p . && cp -R ./src/lib/pssh/proto ./dist/src/lib/pssh/",
"prepare": "npm run build",
"pretest": "npm run build",
"test": "nyc ava",
"lint": "eslint **/*.ts --fix",
"pub": "npm version patch --force && npm publish"
},
"keywords": [
"pssh",
"tools",
"pssh-box",
"pssh-data",
"cenc",
"drm"
],
"author": "Indra Gunawan <[email protected]>",
"license": "BSD",
"dependencies": {
"protobufjs": "^7.2.4"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"ava": "^5.3.1",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"nyc": "^15.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"files": [
"dist/src/*",
"dist/src/**/*"
],
"ava": {
"files": [
"./test/**/*.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"nyc": {
"reporter": [
"lcov",
"text"
],
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"check-coverage": true
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}