-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.32 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.32 KB
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
{
"name": "aes70",
"version": "2.0.18",
"description": "A controller library for the AES70 protocol.",
"type": "module",
"main": "src/index.js",
"module": "src/index.js",
"browser": "src/index.browser.js",
"typings": "src/index.d.ts",
"bin": {
"printDevice": "bin/printDevice.js"
},
"directories": {
"src": "src"
},
"scripts": {
"test": "node --test --test-concurrency=1 tests/*.test.js",
"test:only": "node --test --test-only --test-concurrency=1 tests/*.test.js",
"prepublishOnly": "npx rollup@4.52.4 src/bundle.browser.js --file dist/AES70.es5.js --format iife",
"docs": "cd esdoc && npm run build",
"prettier": "npx prettier@2.0.5 --write .",
"format": "npx prettier@2.0.5 --write .",
"eslint": "./eslint/node_modules/.bin/eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/DeutscheSoft/AES70.js.git"
},
"keywords": [
"Audio",
"Control",
"Protocol",
"RPC"
],
"author": {
"name": "Arne Goedeke",
"email": "arne@deuso.de"
},
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/DeutscheSoft/AES70.js/issues"
},
"homepage": "https://github.com/DeutscheSoft/AES70.js#readme",
"optionalDependencies": {
"ws": "^5.2.4"
},
"sideEffects": [
"src/bundle.browser.js",
"dist/AES70.es5.js"
]
}