-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
52 lines (52 loc) · 1.74 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
{
"name": "maasglobal-json-schema-validator",
"version": "0.0.8",
"description": "",
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"dependencies": {
"ajv": "^8.12.0",
"maasglobal-schema-package": "^0.0.1"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"@typescript-eslint/typescript-estree": "^4.3.0",
"eslint": "^6.8.0",
"eslint-config-maasglobal-ts": "^0.0.13",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-deprecation": "^1.2.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-simple-import-sort": "^5.0.3",
"glob": "^8.0.3",
"jest": "^26.6.3",
"maas-schemas": "^17.3.0",
"prettier": "^2.2.1",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"scripts": {
"readme-ts": "python3 .extract_code.py < README.md > src/readme.ts",
"test": "jest --no-cache",
"clean": "rm -rf lib",
"typecheck": "tsc -p src/tsconfig.json",
"build": "yarn clean && tsc",
"eslint": "eslint --max-warnings=0 '**/*.{ts,js,json}'",
"eslint-fix": "yarn eslint --fix||true",
"prettier-check": "yarn prettier --check '**/*.{css,html,js,ts,json,md,yaml,yml}'",
"prettier-fix": "yarn prettier-check --write",
"prettify": "yarn eslint-fix && yarn prettier-fix",
"lint": "yarn eslint && yarn prettier-check",
"ci": "yarn readme-ts && yarn typecheck && yarn test && yarn lint && yarn build",
"deploy-npm": "yarn ci && yarn publish --non-interactive",
"deploy-alpha": "yarn deploy-npm --tag alpha"
}
}