-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.16 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "vapoursynth-ts",
"version": "0.0.0",
"description": "TypeScript bindings for VapourSynth",
"keywords": [
"vapoursynth",
"video"
],
"main": "./dist/bundles/index.umd.js",
"module": "./dist/esm5/index.js",
"es2015": "./dist/esm2015/index.js",
"typings": "./dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Setsugennoao/vapoursynth-ts"
},
"author": "Setsugennoao <setsugen@setsugen.dev>",
"license": "GPL-3.0-or-later",
"engines": {
"node": ">=8.5",
"npm": ">=6.0",
"yarn": "^1.0"
},
"scripts": {
"postinstall": "node-gyp rebuild",
"build": "tsc && rollup -c config/rollup.config.js && rollup -c config/rollup.config.js --environment NODE_ENV:production",
"postbuild": "node scripts/copy && npm run size",
"docs": "typedoc --exclude \"**/src/**/__tests__/*.*\" --out docs src/",
"test": "node-gyp build && jest -c ./config/jest.config.js",
"test:watch": "npm t -- --watch",
"test:coverage": "npm t -- --coverage",
"test:ci": "npm t -- --ci",
"verify": "tsc -p ./config && tsc -p ./scripts && npm run style && npm run test:ci",
"prerelease": "npm run build",
"release": "standard-version",
"postrelease": "node scripts/copy && node scripts/build && npm run release:npm",
"release:npm": "npm publish dist",
"size": "node scripts/file-size ./dist/bundles/index.umd.min.js ./dist/bundles/index.esm.min.js",
"stubs": "ts-node ./scripts/generate-stubs.ts"
},
"peerDependencies": {
"tslib": ">=1.9.0"
},
"dependencies": {
"@types/bindings": "1.5.1",
"@types/json5": "2.2.0",
"bindings": "1.5.0",
"dts-dom": "3.6.0",
"json5": "2.2.3",
"node-addon-api": "4.3.0",
"reflect-metadata": "0.1.13",
"serialize-javascript": "6.0.1"
},
"devDependencies": {
"@types/jest": "27.4.1",
"@types/node": "17.0.23",
"@types/prettier": "2.4.4",
"@types/webpack-config-utils": "2.3.1",
"brotli-size": "4.0.0",
"cross-var": "1.1.0",
"cz-conventional-changelog": "3.3.0",
"gzip-size": "7.0.0",
"jest": "27.5.1",
"jest-watch-typeahead": "1.0.0",
"kleur": "4.1.4",
"prettier": "2.6.2",
"pretty-bytes": "6.0.0",
"rollup": "2.70.1",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-sourcemaps": "0.6.3",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-uglify": "6.0.4",
"shx": "0.3.4",
"standard-version": "9.3.2",
"ts-jest": "27.1.4",
"tslib": "2.3.1",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-config-standard": "9.0.0",
"tslint-etc": "1.13.10",
"tslint-react": "5.0.0",
"typedoc": "0.22.14",
"typescript": "4.6.3",
"typescript-tslint-plugin": "1.0.2",
"webpack-config-utils": "2.3.1"
}
}