-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
32 lines (32 loc) · 941 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
31
32
{
"name": "@bbc/aes31-adl-composer",
"version": "1.1.0",
"description": "A node module to convert a json sequence into an AES31 ADL (audio decision list) compatible with SADiE audio editing software.",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"jest:ci": "jest --ci",
"lint": "npx eslint --ignore-path .eslintignore .",
"lint:fix": "eslint --ignore-path .eslintignore . --fix",
"publish:public": "npm publish --access public",
"publish:dry:run": "npm publish --dry-run"
},
"author": "",
"license": "ISC",
"dependencies": {
"moment": "^2.24.0",
"smpte-timecode": "^1.2.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-eslint": "^10.0.2",
"eslint": "^5.16.0",
"jest": "^26.6.3"
}
}