-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
56 lines (56 loc) · 1.5 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
{
"name": "mpris-service",
"version": "2.1.2",
"description": "Node.js implementation for the MPRIS D-Bus Interface Specification to create a mediaplayer service",
"main": "dist/index.js",
"scripts": {
"test": "gulp && dbus-run-session -- jest",
"coverage": "gulp && dbus-run-session -- jest --coverage",
"build": "gulp",
"doc": "jsdoc --verbose -c jsdoc.conf --readme README.md --package package.json src/index.js -d doc",
"prepublish": "gulp"
},
"repository": {
"type": "git",
"url": "https://github.com/dbusjs/mpris-service.git"
},
"keywords": [
"mpris",
"media",
"player",
"dbus"
],
"author": "emersion",
"license": "MIT",
"bugs": {
"url": "https://github.com/dbusjs/mpris-service/issues"
},
"homepage": "https://github.com/dbusjs/mpris-service",
"dependencies": {
"dbus-next": "^0.9.2",
"deep-equal": "^1.0.1",
"source-map-support": "^0.5.11"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/plugin-transform-async-to-generator": "^7.4.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-cli": "^2.1.0",
"gulp-sourcemaps": "^2.6.4",
"jest": "^24.1.0",
"jsbi": "^2.0.5",
"jsdoc": "^3.6.6",
"regenerator-runtime": "^0.13.1"
},
"jest": {
"testEnvironment": "node"
},
"engine": {
"node": ">=6.3.0"
}
}