-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.42 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.42 KB
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
{
"name": "sdl2",
"version": "2.0.9",
"description": "Node bindings to SDL2.0",
"homepage": "https://github.com/node-xr/node-sdl2#readme",
"license": "MIT",
"keywords": [
"sdl2",
"3d",
"graphics"
],
"author": "Pras Velagapudi <psigen@gmail.com>",
"maintainers": [
{
"name": "Pras Velagapudi",
"email": "psigen@gmail.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/node-xr/node-sdl2.git"
},
"bugs": {
"url": "https://github.com/node-xr/node-sdl2/issues"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write \"./**/*.{js,ts,json}\"",
"install": "node-gyp rebuild",
"lint": "eslint \"lib/**\"",
"test": "jest"
},
"files": [
"deps/**/*",
"dist/**/*",
"src/**/*",
"binding.gyp",
"package.json",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"bindings": "^1.5.0"
},
"devDependencies": {
"@types/bindings": "^1.3.0",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.14",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-jest": "^23.0.5",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"typescript": "^3.7.2"
}
}