This repository was archived by the owner on Jul 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.87 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
{
"name": "modelike",
"version": "0.1.0",
"description": "Object models validation and alteration",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"clean": "rm -rf lib dist es tsconfig.tsbuildinfo",
"test:watch": "npm test -- --watchAll --coverage",
"build": "npm run clean && rollup -c",
"prepublish": "npm run build",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(js|json|ts|tsx)\"",
"format": "npm run prettier -- --list-different",
"lint": "eslint --ignore-path .gitignore .",
"validate": "npm-run-all --parallel lint prettier test build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevtiq/modelike.git"
},
"keywords": [
"validation",
"normalisation",
"deduction",
"transformation"
],
"author": "Kevin Pennekamp <github@crinkles.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kevtiq/modelike/issues"
},
"homepage": "https://github.com/kevtiq/modelike#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write",
"git add"
]
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-security": "^1.4.0",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"rollup": "^2.48.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"dependencies": {}
}