-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
70 lines (70 loc) · 1.94 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
66
67
68
69
70
{
"name": "@tmigone/pulseaudio",
"version": "1.0.5",
"description": "A TypeScript based client library for PulseAudio.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"clean": "rm -rf build",
"build": "npm run clean && tsc --project tsconfig.publish.json",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "ava",
"test:e2e": "ava --config ava-e2e.config.cjs",
"watch": "tsc --watch --project tsconfig.json",
"prepack": "npm run build",
"prepare": "husky install",
"lint": "ts-standard",
"lint:fix": "ts-standard --fix",
"pre-commit": "lint-staged",
"coverage": "nyc npm run test:unit && nyc report --reporter=lcovonly",
"docs": "typedoc --categorizeByGroup false --excludePrivate --out typedoc src",
"docs:watch": "typedoc --watch --categorizeByGroup false --excludePrivate --out typedoc src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tmigone/pulseaudio.git"
},
"author": "Tomás Migone <tomasmigone@gmail.com>",
"contributors": [
"SpacingBat3 <npm@spacingbat3.anonaddy.com> (https://github.com/SpacingBat3)"
],
"license": "MIT",
"keywords": [
"pulseaudio",
"pulse",
"audio",
"paclient",
"palib",
"client"
],
"bugs": {
"url": "https://github.com/tmigone/pulseaudio/issues"
},
"homepage": "https://github.com/tmigone/pulseaudio#readme",
"engines": {
"node": ">=10.0.0 <17.0.0"
},
"devDependencies": {
"@types/node": "^14.0.13",
"ava": "^3.8.2",
"dotenv": "^11.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.2.0",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"ts-node": "^8.10.2",
"ts-standard": "^11.0.0",
"typedoc": "^0.22.11",
"typedoc-plugin-no-inherit": "^1.3.1",
"typescript": "^4.0.0"
},
"files": [
"build/*",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"versionist": {
"publishedAt": "2022-08-25T21:03:42.439Z"
}
}