-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 986 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
33
34
35
36
37
{
"name": "node-gstreamer-launch",
"version": "0.1.5",
"description": "gst-launch-1.0 helper for node",
"main": "src/index.js",
"scripts": {
"test": "jest ./src/",
"test:watch": "jest --watchAll ./src",
"lint": "npm run lint:eslint -- ./src",
"lint:eslint": "eslint -c .eslintrc.prod.json --ignore-path .gitignore",
"lint:staged": "lint-staged"
},
"lint-staged": {
"*.js": "npm run-script lint:eslint"
},
"pre-commit": [
"lint:staged"
],
"repository": {
"type": "git",
"url": "[email protected]:Webini/node-gstreamer-launch.git"
},
"author": "GASPARINI Nicolas",
"license": "ISC",
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^26.6.3",
"lint-staged": "^9.4.2",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2"
},
"dependencies": {}
}