forked from etro-js/etro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.91 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
91
{
"name": "etro",
"version": "0.11.0",
"description": "An extendable video-editing framework for the browser",
"browser": "dist/etro-cjs.js",
"types": "dist/index.d.ts",
"directories": {
"doc": "docs",
"example": "examples",
"test": "spec"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/format": "^17.4.4",
"@rollup/plugin-eslint": "^8.0.2",
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"canvas": "^2.11.2",
"cross-env": "^7.0.3",
"docdash": "^1.1.1",
"ecstatic": ">=4.1.3",
"eslint": "^8.20.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-html": "^7.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"ev": "0.0.7",
"gitmoji-cli": "^8.4.0",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"jasmine": "^3.4.0",
"jasmine-ts": "^0.4.0",
"karma": "^6.1.1",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^2.0.1",
"karma-super-dots-reporter": "^0.2.0",
"karma-typescript": "^5.5.3",
"keep-a-changelog": "^0.10.4",
"puppeteer": "^2.0.0",
"resemblejs": "^4.1.0",
"rollup": "^1.19.4",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.29.0",
"rollup-plugin-uglify-es": "^0.0.1",
"shipjs": "^0.26.3",
"typedoc": "^0.23.8",
"typescript": "^4.7.4"
},
"scripts": {
"build": "rollup -c",
"doc": "rm -rf docs && npx typedoc src/etro.ts --excludePrivate --readme none",
"prepare": "husky install",
"effects": "node scripts/effect/save-effect-samples.js",
"lint": "npm run --silent lint:main && npm run --silent lint:test && npm run --silent lint:examples",
"fix": "npm run --silent lint:main -- --fix && npm run --silent lint:test -- --fix && npm run --silent lint:examples -- --fix",
"lint:main": "eslint -c eslint.typescript-conf.js --ext .ts src",
"lint:test": "eslint -c eslint.test-conf.js --ext .ts spec",
"lint:examples": "eslint -c eslint.example-conf.js --ext .html examples",
"start": "http-server",
"test:unit": "cross-env TEST_SUITE=unit karma start",
"test:smoke": "cross-env TEST_SUITE=smoke karma start",
"test:integration": "cross-env TEST_SUITE=integration karma start",
"release": "shipjs prepare"
},
"repository": {
"type": "git",
"url": "git+https://github.com/etro-js/etro.git"
},
"keywords": [
"video",
"audio",
"blob",
"video-editing",
"video-editor",
"video-manipulation",
"browser",
"nodejs",
"api-driven",
"etro"
],
"author": "Caleb Sacks (https://calebsacks.me)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/etro-js/etro/issues"
},
"homepage": "https://github.com/etro-js/etro#readme"
}