-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.01 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.01 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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "lcevc_dec.js",
"version": "1.3.0",
"description": "V-Nova MPEG-5 LCEVC Decoder",
"main": "dist/lcevc_dec.min.js",
"scripts": {
"debug": "npx rollup --config",
"watch": "npx rollup --config --watch",
"dev": "npm run watch",
"build": "npx rollup --config --environment ENV_PRODUCTION",
"ci": "npx rollup --config --failAfterWarnings --environment ENV_PRODUCTION",
"internal": "npx rollup --config --environment ENV_INTERNAL,ENV_PRODUCTION",
"quickTest": "cd node_modules/karma/bin/ && karma start ../../../karma.conf.js",
"test": "npx eslint test/*.js test/utils/*.js && npm run build && cd node_modules/karma/bin/ && karma start ../../../karma.conf.js",
"updateNightly": "npm version $(semver $npm_package_version -i prerelease --preid nightly-$(date \"+%Y%m%d\"))",
"updateRelease": "npm version minor"
},
"keywords": [
"lcevc",
"mpeg5 part2 lcevc",
"v-nova"
],
"author": "V-Nova International Limited",
"license": "SEE dist_docs/LICENSE",
"files": [
"dist/lcevc_dec.min.js",
"dist/liblcevc_dpi.wasm",
"dist/package-info.txt",
"dist_docs",
"README.md"
],
"publishConfig": {
"registry": "https://nexus.dev.v-nova.com/repository/v-nova-npm-public/"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.12.1",
"@babel/eslint-plugin": "^7.12.1",
"@babel/plugin-transform-class-properties": "^7.24.1",
"@babel/plugin-transform-private-methods": "^7.24.1",
"@babel/plugin-transform-private-property-in-object": "^7.24.1",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.13.0",
"@babel/register": "^7.12.10",
"@babel/runtime-corejs3": "^7.14.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-eslint": "8.0.2",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.5.0",
"@types/estree": "^1.0.0",
"@types/node": "^22.17.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-loader": "^8.2.2",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"core-js": "^3.9.1",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-es5": "^1.2.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-compat": "^3.9.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jsdoc": "^31.6.0",
"jasmine-core": "^4.4.0",
"karma": "^6.4.1",
"karma-babel-preprocessor": "^8.0.2",
"karma-browserify": "^8.1.0",
"karma-browserstack-launcher": "^1.6.0",
"karma-chrome-launcher": "^3.1.1",
"karma-jasmine": "^5.1.0",
"open": "^8.0.7",
"prettier": "2.3.2",
"rollup": "^2.79.1",
"rollup-plugin-shell": "^1.0.9",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-web-worker-loader": "^1.6.1",
"ts-node": "^8.10.2",
"tsify": "^5.0.4",
"tslib": "^2.4.0",
"typescript": "^4.3.4",
"watchify": "^4.0.0"
},
"dependencies": {
"git-rev-sync": "^3.0.1"
}
}