-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
{
"name": "@tuzhanai/value-type-manager",
"version": "1.2.0",
"description": "数据类型格式化与校验管理器",
"main": "dist/lib/index.js",
"typings": "dist/lib/index.d.ts",
"files": [
"dist/lib"
],
"scripts": {
"test": "mocha --require ts-node/register src/test/**/*.spec.ts",
"tag": "git tag v`node -p 'require(\"./package\").version'`",
"format": "prettier --write 'src/**/*.ts'",
"prepublishOnly": "npm test && rm -rf dist && tsc",
"postpublish": "npm run tag && git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tuzhanai/value-type-manager.git"
},
"keywords": [
"type",
"value",
"manager",
"scheme"
],
"author": "Zongmin Lei <[email protected]>",
"contributors": ["Yourtion Guo <[email protected]>"],
"license": "MIT",
"bugs": {
"url": "https://github.com/tuzhanai/value-type-manager/issues"
},
"homepage": "https://github.com/tuzhanai/value-type-manager#readme",
"peerDependencies": {
"@types/node": "*"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.14",
"@types/validator": "^13.1.1",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"validator": "^13.5.2"
}
}