generated from shadow578/typescript-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.41 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
{
"name": "@shadow578/powershell-binding",
"version": "1.0.0",
"description": "",
"author": "shadow578",
"license": "MIT",
"keywords": [
"typescript",
"powershell",
"binding"
],
"repository": {
"type": "git",
"url": "git+https://github.com/shadow578/powershell-binding.git"
},
"homepage": "https://github.com/shadow578/powershell-binding",
"bugs": {
"url": "https://github.com/shadow578/powershell-binding/issues"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"test": "jest --config jestconfig.json",
"format": "prettier --ignore-path .gitignore --write \"src/**/*.+(js|ts|json)\"",
"lint": "eslint --ext .js,.ts src",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm test && npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^18.11.6",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.3.1",
"prettier": "^2.8.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"dependencies": {
"@shadow578/type-guardian": "^1.1.0",
"node-powershell": "^5.0.1"
}
}