-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
92 lines (92 loc) · 2.93 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "sjs-base-model",
"version": "2.0.1",
"description": "BaseModel helps translate data to models",
"keywords": [
"base-model",
"sjs-base-model",
"structure",
"structure-js",
"typescript"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"post-commit": "git update-index -g"
}
},
"scripts": {
"---------- DEVELOPMENT -------------------------------------": "",
"prewatch": "npm run clean && npm run build:types",
"watch": "rollup -cw",
"---------- BUILD -------------------------------------------": "",
"prebuild": "npm run ts && npm run test && npm run clean && npm run build:types",
"build": "rollup -c",
"---------- TESTING -----------------------------------------": "",
"ts": "tsc --noEmit",
"ts:watch": "npm run ts -- --watch",
"test": "npm run lint && npm run unit",
"test:watch": "jest --watch",
"lint": "eslint . --ext .ts,.tsx",
"unit": "jest",
"coverage": "jest --coverage",
"---------- PUBLISH -----------------------------------------": "",
"prerelease": "npm run build",
"release": "np",
"---------- HELPERS -----------------------------------------": "",
"clean": "rimraf dist",
"build:types": "tsc --emitDeclarationOnly",
"up": "yarn upgrade-interactive --latest",
"prettier": "npx prettier --write \"./**/*.{ts,tsx,js,jsx,json,md}\"",
"------------------------------------------------------------": ""
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/"
],
"dependencies": {},
"license": "MIT",
"devDependencies": {
"@babel/core": "7.17.12",
"@babel/plugin-proposal-class-properties": "7.17.12",
"@babel/plugin-proposal-object-rest-spread": "7.17.12",
"@babel/plugin-transform-runtime": "7.17.12",
"@babel/preset-env": "7.17.12",
"@babel/preset-typescript": "7.17.12",
"@babel/runtime": "7.17.9",
"@types/jest": "27.5.1",
"@typescript-eslint/eslint-plugin": "5.25.0",
"@typescript-eslint/parser": "5.25.0",
"eslint": "8.15.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-typescript-sort-keys": "2.1.0",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "4.2.5",
"jest": "28.1.0",
"prettier": "2.6.2",
"pretty-quick": "3.1.3",
"rimraf": "3.0.2",
"rollup": "2.74.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-uglify": "6.0.4",
"ts-jest": "28.0.2",
"tslib": "2.4.0",
"typescript": "4.6.4"
},
"author": {
"name": "Robert S. (codeBelt)",
"email": "code@codebelt.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeBelt/sjs-base-model.git"
},
"bugs": {
"url": "https://github.com/codeBelt/sjs-base-model/issues"
},
"homepage": "https://github.com/codeBelt/sjs-base-model#readme"
}