linting, editorconfig
This commit is contained in:
parent
ee66b16be2
commit
2f4ab521b5
9 changed files with 2267 additions and 146 deletions
86
package.json
86
package.json
|
|
@ -1,37 +1,55 @@
|
|||
{
|
||||
"name": "ts-osc",
|
||||
"version": "0.1.2",
|
||||
"description": "Fully TypeScript-native OSC Client based on osc-min",
|
||||
"main": "./lib/index.js",
|
||||
"types": "./lib/index.d.ts",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"compile": "tsc",
|
||||
"watch": "tsc --watch",
|
||||
"docs": "typedoc --out docs ./src/index.ts",
|
||||
"clean": "rimraf lib",
|
||||
"build": "run-s clean compile docs"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://gitlab.riksolo.com/riksolo/ts-osc/"
|
||||
},
|
||||
"keywords": [
|
||||
"osc",
|
||||
"open sound control",
|
||||
"udp",
|
||||
"sound control"
|
||||
],
|
||||
"author": "Rik Berkelder <mail@riksolo.com>",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"osc-min": "^1.1.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^14.14.22",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"rimraf": "^3.0.2",
|
||||
"typedoc": "^0.20.16",
|
||||
"typescript": "^4.1.3"
|
||||
"name": "ts-osc",
|
||||
"version": "0.1.2",
|
||||
"description": "Fully TypeScript-native OSC Client based on osc-min",
|
||||
"main": "./lib/index.js",
|
||||
"types": "./lib/index.d.ts",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"compile": "tsc",
|
||||
"watch": "tsc --watch",
|
||||
"docs": "typedoc --out docs ./src/index.ts",
|
||||
"clean": "rimraf lib",
|
||||
"build": "run-s clean compile docs",
|
||||
"lint": "eslint ./src --ext .js,.ts",
|
||||
"lint:fix": "npm run lint -- --fix"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://gitlab.riksolo.com/riksolo/ts-osc/"
|
||||
},
|
||||
"keywords": [
|
||||
"osc",
|
||||
"open sound control",
|
||||
"udp",
|
||||
"sound control"
|
||||
],
|
||||
"author": "Rik Berkelder <mail@riksolo.com>",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"osc-min": "^1.1.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^14.14.22",
|
||||
"@typescript-eslint/eslint-plugin": "^4.14.0",
|
||||
"@typescript-eslint/parser": "^4.14.0",
|
||||
"eslint": "^7.18.0",
|
||||
"eslint-config-prettier": "^7.2.0",
|
||||
"eslint-plugin-prettier": "^3.3.1",
|
||||
"husky": "^4.3.8",
|
||||
"lint-staged": "^10.5.3",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"prettier": "^2.2.1",
|
||||
"rimraf": "^3.0.2",
|
||||
"typedoc": "^0.20.16",
|
||||
"typescript": "^4.1.3"
|
||||
},
|
||||
"lint-staged": {
|
||||
"src/**/*.{ts}": "eslint ./src --fix"
|
||||
},
|
||||
"husky": {
|
||||
"hooks": {
|
||||
"pre-commit": "lint-staged"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue