-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.41 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
{
"name": "isomp4",
"version": "0.0.0-monorepo",
"description": "A modern, flexible, and extensible parsing framework for ISO/IEC 14496-12 (MPEG-4 Part 12)",
"keywords": [
"iso",
"bmff",
"mp4",
"parse",
"codec",
"box"
],
"author": {
"name": "Bradley Odell",
"url": "https://github.com/BTOdell"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BTOdell/isomp4.git"
},
"bugs": {
"url": "https://github.com/BTOdell/isomp4/issues"
},
"homepage": "https://github.com/BTOdell/isomp4#readme",
"license": "MPL-2.0",
"private": true,
"workspaces": [
"boxes/*",
"packages/*"
],
"devDependencies": {
"@types/chai": "^4.2.19",
"@types/mocha": "^8.2.2",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"chai": "^4.3.4",
"eslint": "^7.28.0",
"lerna": "^4.0.0",
"mocha": "^9.0.1",
"npm-run-all": "^4.1.5",
"shx": "^0.3.3",
"typescript": "^4.3.5"
},
"scripts": {
"lint": "eslint --quiet --ext .ts ./",
"compile": "tsc -b",
"pretest": "npm run compile",
"test": "mocha",
"prepublishOnly": "npm run compile",
"clean": "npm run clean --workspaces",
"clean-nm": "npx shx rm -rf ./**/node_modules",
"clean-all": "run-s -cs clean clean-nm"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.14.0"
}
}