-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 730 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 730 Bytes
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
{
"name": "ts-design-patterns",
"version": "1.0.0",
"description": "A TypeScript Design Patterns Library",
"scripts": {
"pattern:new": "./scripts/new-pattern.sh",
"gen:summary": "./scripts/generate-summary.js",
"build": "tsc",
"build:watch": "tsc -w",
"test": "jest --verbose",
"test:watch": "jest --verbose --watchAll",
"lint": "markdownlint '**/*.md' --ignore node_modules",
"format": "prettier -w ."
},
"author": "Khaled Mohamed <Khal3d.Mohamed@gmail.com>",
"license": "CC-BY-SA-4.0",
"devDependencies": {
"@types/jest": "^26.0.15",
"jest": "^26.6.0",
"markdownlint-cli": "^0.24.0",
"prettier": "2.1.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
}
}