-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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
{
"name": "@tuzhanai/schema-manager",
"version": "1.3.0",
"description": "数据Schema管理器",
"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/schema-manager.git"
},
"keywords": [
"schema",
"manager"
],
"author": "Zongmin Lei <[email protected]>",
"contributors": [
"Yourtion Guo <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tuzhanai/schema-manager/issues"
},
"homepage": "https://github.com/tuzhanai/schema-manager#readme",
"peerDependencies": {
"@types/node": "*"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.14",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@tuzhanai/value-type-manager": "^1.2.0"
}
}