-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
83 lines (83 loc) · 1.69 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "git-upstream-template",
"license": "MIT",
"version": "1.0.6",
"author": "rioam2",
"homepage": "https://www.npmjs.com/package/git-upstream-template",
"description": "Synchronize git templates generated by GitHub as if they were forks",
"main": "./dist/src/index.js",
"bin": {
"git-upstream-template": "./dist/src/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rioam2/git-upstream-template.git"
},
"bugs": {
"url": "https://github.com/rioam2/git-upstream-template/issues"
},
"keywords": [
"templates",
"synchronization",
"repository-sync",
"upstream-template",
"npm",
"fork",
"cherry-pick",
"merge",
"unrelated-histories"
],
"scripts": {
"build": "rm -rf ./dist && tsc",
"git-upstream-template": "ts-node ./src/cli.ts",
"test": "nyc mocha",
"watch": "mocha --watch",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepublish": "yarn build"
},
"files": [
"dist/**"
],
"husky": {
"hooks": {
"pre-commit": "yarn test && yarn embedme README.md"
}
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text"
],
"sourceMap": true,
"instrument": true
},
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/chalk": "^2.2.0",
"@types/inquirer": "^6.5.0",
"@types/mocha": "^5.2.6",
"@types/node": "^12.7.8",
"chai": "^4.2.0",
"coveralls": "^3.0.6",
"embedme": "^1.17.1",
"husky": "^3.0.5",
"mocha": "^6.0.2",
"nyc": "^14.1.1",
"source-map-support": "^0.5.13",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
},
"dependencies": {
"chalk": "^2.4.2",
"inquirer": "^7.0.0"
}
}