-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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
{
"name": "httpgd",
"version": "0.1.7",
"description": "R httpgd GraphicsDevice API and connection handler",
"main": "lib/httpgd.js",
"types": "lib/httpgd.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"format": "prettier --config .prettierrc \"src/**/*.ts\" --write",
"lint": "eslint \"src/**/*.ts\" --fix",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nx10/httpgd-js.git"
},
"keywords": [
"httpgd",
"R",
"Plot",
"Graphics"
],
"author": "Florian Rupprecht",
"license": "MIT",
"bugs": {
"url": "https://github.com/nx10/httpgd-js/issues"
},
"homepage": "https://github.com/nx10/httpgd-js#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"prettier": "^2.5.0",
"prettier-plugin-jsdoc": "^0.3.30",
"typescript": "^4.5.2"
},
"files": [
"lib/**/*"
],
"dependencies": {
"@types/ws": "^8.2.0",
"cross-fetch": "^3.1.4",
"isomorphic-ws": "^4.0.1",
"ws": "^8.3.0"
}
}