-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.69 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
{
"name": "@ideamall/data-model",
"version": "1.0.0-rc.2",
"license": "LGPL-2.1",
"author": "[email protected]",
"description": "IdeaMall data model is based on TypeScript class validator",
"keywords": [
"mall",
"shop",
"store",
"market",
"data-model",
"class"
],
"homepage": "https://ideamall.github.io/data-model/",
"repository": {
"type": "git",
"url": "git+https://github.com/IdeaMall/data-model.git"
},
"bugs": {
"url": "https://github.com/IdeaMall/data-model/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"source": "src/index.ts",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"mobx-restful": "^0.6.11",
"reflect-metadata": "^0.1.13",
"tslib": "^2.6.2"
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"open-cli": "^7.2.0",
"prettier": "^3.0.3",
"typedoc": "^0.25.1",
"typedoc-plugin-mdn-links": "^3.1.0",
"typescript": "~5.2.2"
},
"prettier": {
"tabWidth": 4,
"trailingComma": "none",
"arrowParens": "avoid",
"singleQuote": true
},
"lint-staged": {
"*.{md,json,yml,ts}": "prettier --write"
},
"scripts": {
"prepare": "husky install",
"test": "lint-staged",
"build": "rm -rf dist/ docs/ && tsc && typedoc src/",
"start": "npm run build && open-cli docs/index.html",
"prepublishOnly": "npm test && npm run build"
}
}