-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.26 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
{
"name": "asura-eye",
"version": "0.6.0",
"description": "类型判断方法包",
"module": "lib/index.esm.js",
"main": "lib/index.js",
"unpkg": "/lib/",
"deliver": "/lib/",
"typings": "lib/index.d.ts",
"scripts": {
"prepare": "husky install",
"coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls",
"git:style": "bash ./config/script/style.bat",
"commitlint": "commitlint -e",
"reload": "rimraf node_modules && pnpm install",
"build": "npx rollup -c ./config/rollup.build.ts",
"build:ed": "npx rollup -c --extend ./rollup.config.ts",
"docs": "node ./config/docs.js",
"test": "ts-node-dev --respawn --transpile-only ./test/index.ts",
"start": "node ./dist/index.js",
"eslint": "eslint . --ext .ts",
"eslint:fix": "eslint . --ext .ts --fix",
"pub": "npm publish",
"git": "node config/script/git.js",
"nocache": "jest --no-cache",
"watch": "jest --watchAll",
"jest": "jest --coverage",
"verbose": "npx jest --verbose"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"keywords": [
"typescript",
"javascript",
"type",
"method"
],
"engines": {
"node": ">=16"
},
"bugs": "https://github.com/unit-testing-js/check-it-type/issues",
"repository": {
"type": "git",
"url": "git@github.com:unit-testing-js/check-it-type.git"
},
"author": "ruihuag",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.21.3",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^23.0.5",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/node": "^18.11.2",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"command-go": "^0.1.1",
"coveralls": "^3.1.1",
"eslint": "^8.25.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"node-notifier": "^10.0.1",
"prettier": "^2.7.1",
"rollup": "^2.79.1",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.8.4",
"unit-testing-js": "0.4.0"
}
}