-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 813 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 813 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
26
27
28
29
30
31
{
"name": "@mauriora/simpleprocess",
"version": "0.0.4",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=14.16.0"
},
"scripts": {
"lint": "eslint .",
"build": "eslint . && tsc --build",
"rebuild": "eslint . && tsc --build --clean && tsc --build",
"clean": "tsc --build --clean"
},
"devDependencies": {
"@mauriora/eslint-config-ts": "0.0.1",
"@mauriora/package-tools": "^0.1.2",
"@types/es6-promise": "^3.3.0",
"@types/node": "14.18.20",
"@types/webpack-env": "1.17.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"@typescript-eslint/typescript-estree": "^5.27.0",
"eslint": "^7.32.0",
"typescript": "~4.5.5"
}
}