-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1 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
{
"name": "@eyevinn/video-event-filter",
"version": "2.0.0",
"description": "",
"source": "index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "parcel demo/index.html",
"build": "rm -rf ./dist && parcel build index.ts && tsc",
"prepare": "npm run build",
"postversion": "git push --no-verify && git push --tags --no-verify"
},
"keywords": [],
"author": "erik.hoffman@eyevinn.se",
"license": "MIT",
"repository": "https://github.com/Eyevinn/video-event-filter",
"devDependencies": {
"@parcel/packager-ts": "^2.2.1",
"@parcel/transformer-typescript-tsc": "^2.2.1",
"@parcel/transformer-typescript-types": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"parcel": "^2.2.1",
"prettier": "^2.1.2",
"typescript": "^4.1.2"
},
"dependencies": {
"mitt": "^2.1.0"
}
}