forked from m-rots/mediainfo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 805 Bytes
/
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
{
"name": "node-mediainfo",
"description": "NodeJS MediaInfo module built with WebAssembly",
"version": "1.0.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": "m-rots",
"repository": {
"type": "git",
"url": "git+https://github.com/m-rots/mediainfo.git"
},
"keywords": [
"MediaInfo"
],
"devDependencies": {
"@types/node": "^12.7.5",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"eslint": "^6.3.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.17.2",
"typescript": "^3.4.5"
},
"scripts": {
"build": "npm run types && tsc",
"prepare": "npm run build",
"types": "tsc --outDir tmp src/build.ts --lib es2017 && node tmp/build"
}
}