-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
49 lines (49 loc) · 1.11 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
{
"name": "aes70",
"version": "1.5.3",
"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 tests/*.test.js",
"prepublishOnly": "make",
"docs": "cd esdoc && npm run build",
"prettier": "cd prettier && npm run prettier",
"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": "[email protected]"
},
"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"
]
}