-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.13 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "git-upm-publisher",
"version": "1.1.1",
"description": "Automate UPM package releases for Git repositories containing Unity plugins.",
"author": "starikcetin <[email protected]> (https://github.com/starikcetin)",
"license": "MIT",
"homepage": "https://github.com/starikcetin/git-upm-publisher-2",
"repository": "git+https://github.com/starikcetin/git-upm-publisher-2.git",
"bugs": "https://github.com/starikcetin/git-upm-publisher-2/issues",
"main": "dist/index.js",
"bin": {
"gup": "dist/index.js"
},
"files": [
"dist/"
],
"scripts": {
"find-unused-exports": "ts-unused-exports tsconfig.json",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"prepublishOnly": "npm run build",
"prebuild": "rimraf dist/ && npm run find-unused-exports",
"start": "npm run build && node dist/index.js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts\" --source-maps inline",
"build": "npm run build:types && npm run build:js",
"prettier:write": "prettier --write src",
"prettier:check": "prettier --check src"
},
"dependencies": {
"find-up": "^4.1.0",
"git-snapshot": "^2.2.2",
"glob": "^7.1.6",
"glob-promise": "^3.4.0",
"is-git-dirty": "^1.0.0",
"jsonfile": "^5.0.0",
"prompts": "^2.3.1",
"simple-git": "^1.131.0",
"yargs": "^15.1.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@types/jsonfile": "^5.0.0",
"@types/prompts": "^2.0.3",
"@types/yargs": "^15.0.3",
"babel-preset-minify": "^0.5.1",
"husky": "^4.3.0",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"ts-unused-exports": "^6.0.0",
"typescript": "^3.8.2"
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"lint-staged": {
"src/**/*": [
"prettier --write"
]
}
}