-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 977 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
38
39
40
41
42
{
"name": "snapmatic-converter",
"version": "2.0.0",
"description": "GTA Snapmatic to JPEG converter",
"scripts": {
"build": "tsc",
"test": "npm run build && mkdir -p dist/test/src && cp src/test/src/PGTA* dist/test/src && jest dist/test/*",
"prepublish": "npm run build && rm -rf dist/test"
},
"files": [
"dist/"
],
"bin": {
"snapmatic-converter": "./dist/bin/run.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manuasir/snapmatic-converter.git"
},
"keywords": [
"gta",
"jpeg",
"snapmatic",
"file",
"converter",
"node",
"javascript",
"js",
"nodejs"
],
"author": "manuasir",
"license": "MIT",
"bugs": {
"url": "https://github.com/manuasir/snapmatic-converter/issues"
},
"homepage": "https://github.com/manuasir/snapmatic-converter#readme",
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.8",
"jest": "^24.9.0"
}
}