generated from blazingworks/helloworld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.12 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
{
"name": "@blazingworks/utils",
"version": "1.2.0",
"description": "Various development utilities by BlazingWorks",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"repository": "https://github.com/blazingworks/utils.git",
"author": "BlazingWorks",
"license": "MIT",
"private": true,
"scripts": {
"build": "rimraf dist && tsc && npm run build:after",
"build:after": "cp package.dist.json dist/package.json && cp README.md dist/README.md && cp LICENSE dist/LICENSE",
"prettier": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src/**/*.ts",
"prettier:ci": "prettier --check \"src/**/*.ts\"",
"lint:ci": "eslint src/**/*.ts --quiet",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.1.1",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"jest": "^29.1.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}