-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.43 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "node-talisman",
"version": "1.29.11",
"description": "A npm package for running Thoughtwork's Talisman tool",
"main": "./src/index.ts",
"typesVersions": {
">=3.5": {
"*": [
"ts3.5/*"
]
}
},
"scripts": {
"build": "npm run check && pika build",
"publish": "pika publish",
"lint:scripts": "eslint \"src/**/*.{js,ts}\" \"scripts/**/*.{js,ts}\" --cache --cache-location \".cache/.eslintcache/\"",
"lint": "npm run lint:scripts",
"typecheck": "tsc --noEmit -p ./tsconfig.typecheck.json",
"test": "cross-env NODE_ENV=test jest --projects ./scripts/jest --cacheDirectory \".cache/jest/\"",
"test:watch": "npm run test -- --watch",
"test:changed-only": "npm run test -- --onlyChanged",
"test:coverage": "npm run test -- --coverage",
"test:update-snapshot": "npm run test -- --updateSnapshot",
"format": "npm run lint:scripts -- --fix",
"format:check": "eslint --print-config .eslintrc | eslint-config-prettier-check",
"check": "npm run lint && npm run typecheck && npm run test:coverage -- --bail",
"coveralls": "cat ./reports/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./reports/coverage",
"version": "npm run build"
},
"engines": {
"node": ">=12.14.x",
"npm": ">=6.13.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pgmanutd/node-talisman.git"
},
"keywords": [
"javascript",
"typescript",
"talisman",
"thoughtworks",
"SSH keys",
"authorization tokens",
"private keys"
],
"author": "pgmanutd <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pgmanutd/node-talisman/issues"
},
"homepage": "https://github.com/pgmanutd/node-talisman#readme",
"dependencies": {
"clogy": "^1.3.3",
"exec-sh": "^0.3.4",
"mkdirp": "^1.0.4",
"request": "^2.88.2"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-types": "^0.9.2",
"@pika/plugin-simple-bin": "^0.9.2",
"@pika/plugin-standard-pkg": "^0.9.2",
"@types/jest": "^26.0.14",
"@types/mkdirp": "^1.0.1",
"@types/node": "^14.11.2",
"@types/request": "^2.48.5",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jscodeshift": "^0.11.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"replace-in-file": "^6.1.0",
"semver": "^7.3.8",
"ts-jest": "^26.4.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"**/__tests__/**/*",
"**/__mocks__/**/*"
]
}
],
[
"@pika/plugin-build-types",
{
"tsconfig": "tsconfig.base.json"
}
],
[
"@pika/plugin-build-node",
{
"minNodeVersion": "12"
}
],
[
"@pika/plugin-simple-bin",
{
"bin": "node-talisman"
}
]
]
}
}