-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.65 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
{
"name": "fcpx-audio-role-encoder",
"version": "0.1.4",
"description": "append iXML Chunk with 'audio role name' for 'Final Cut Pro X', to wav file.",
"main": "processor.js",
"types": "types.d.ts",
"scripts": {
"all": "gulp tsc && gulp test && gulp lint && gulp format",
"tsc": "gulp tsc",
"lint": "gulp lint",
"formt": "gulp format",
"test": "gulp test",
"exe": "nexe bin/fcpx-audio-role-append.js"
},
"bin": {
"fcpx-audio-role-append": "bin/fcpx-audio-role-append.js"
},
"files": [
"README.md",
"bin/fcpx-audio-role-append.js",
"package-lock.json",
"package.json",
"processor.js",
"riff.js"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/taku-o/fcpx-audio-role-encoder.git"
},
"keywords": [
"wav",
"audio",
"ixml",
"fcpx",
"javascript"
],
"homepage": "https://github.com/taku-o/fcpx-audio-role-encoder#readme",
"bugs": {
"url": "https://github.com/taku-o/fcpx-audio-role-encoder/issues"
},
"author": "taku-o <[email protected]> (https://nanasi.jp/)",
"license": "MIT",
"dependencies": {
"minimist": "^1.2.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^10.14.5",
"@typescript-eslint/parser": "^1.7.0",
"chai": "^4.2.0",
"eslint": "^5.6.1",
"gulp": "^3.9.1",
"gulp-eslint": "^5.0.0",
"gulp-mocha": "^6.0.0",
"gulp-prettier": "^2.1.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^5.0.1",
"mocha": "^4.1.0",
"nexe": "^3.2.0",
"source-map-support": "^0.5.12",
"typescript": "^3.4.5",
"wav-fmt-validator": "^0.1.2"
}
}