-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.24 KB
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
{
"name": "builder-pattern-2",
"version": "1.0.0",
"description": "Implementation of the Builder Pattern for both Javascript/Typescript and compatible with ES5/ES6 classes",
"author": "Baboo7",
"license": "MIT",
"repository": "Baboo7/builder-pattern-2",
"homepage": "https://github.com/Baboo7/builder-pattern-2#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"builder",
"pattern"
],
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"babel-jest": "^27.4.5",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.5",
"nodemon": "2.0.4",
"prettier": "^2.5.1",
"ts-node": "8.10.2",
"typescript": "^4.1"
},
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watchAll",
"dev": "nodemon --watch 'lib/**/*.ts' --exec 'ts-node' lib/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "rm -rf dist && npm run build"
}
}