-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.51 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.51 KB
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
{
"name": "@litert/typeguard-php",
"version": "0.1.0",
"description": "The PHP language implement for TypeGuard.",
"main": "lib/index.js",
"scripts": {
"prepublishOnly": "npm run rebuild",
"build": "echo Using TypeScript && tsc -v && tsc -p .",
"build-watch": "echo Using TypeScript && tsc -v && tsc -w -p .",
"rebuild": "npm run clean && npm run lint && npm run build",
"clean": "rm -rf lib cli",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint --ext ts src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/litert/typeguard-php.git"
},
"bugs": {
"url": "https://github.com/litert/typeguard-php/issues"
},
"homepage": "https://github.com/litert/typeguard-php#readme",
"keywords": [
"typeguard",
"php"
],
"author": "Angus.Fenying <fenying@litert.org> (https://fenying.net)",
"license": "Apache-2.0",
"typings": "lib/index.d.ts",
"types": "lib/index.d.ts",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint && npm run typecheck"
}
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^20.3.1",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"eslint": "^7.6.0",
"husky": "^4.2.5",
"typescript": "^3.9.7"
},
"peerDependencies": {
"@litert/typeguard": "^1.0.1"
},
"dependencies": {
"@litert/typeguard": "^1.0.1"
}
}