-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.55 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
{
"name": "@aitodotai/aitoai-config-parser",
"version": "0.0.9",
"description": "Simple config parser with typechecking and support for auto-complete",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/AitoDotAI/aitoai-config-parser"
},
"scripts": {
"clean": "rm -rf dist",
"test": "jest",
"build": "tsc --strict",
"release": "release-it",
"lint": "eslint src test --ext .ts",
"prettier-check": "prettier --config .prettierrc.json --check 'src/**/*ts*' --check 'test/**/*.ts*'",
"prettier-reformat": "prettier --config .prettierrc.json --write 'src/**/*ts*' --write 'test/**/*.ts*'",
"make-pretty": "npm run prettier-reformat"
},
"author": {
"name": "Chistoffer Ventus",
"email": "christoffer@aito.ai"
},
"contributors": [
{
"name": "Kai Inkinen",
"email": "kai@aito.ai"
}
],
"license": "Apache-2.0",
"dependencies": {
"app-root-path": "^3.1.0",
"dotenv-extended": "^2.9.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.0.3",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.0.3",
"prettier": "^2.7.1",
"release-it": "^15.4.2",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"typescript-eslint": "^0.0.1-alpha.0"
}
}