-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.89 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
45
46
47
48
{
"name": "ts4ocds",
"version": "1.0.0",
"private": true,
"description": "TS4OCDS is a library of TypeScript entities that takes an approach to befriend large OCDS JSONs with your per-project routine of writing whole lotta interfaces for them.",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"format": "prettier --check \"packages/**/*.ts\"",
"lint": "eslint --quiet --color \"packages/**/*.ts\"",
"typecheck": "tsc -p ./tsconfig.ci.json",
"prebuild": "rimraf \"packages/*/{lib,*.tsbuildinfo}\"",
"build:ts": "lerna exec --no-private --parallel -- cp -R src/ lib/",
"build:docs": "yarn --cwd packages/docs build",
"build": "npm-run-all -p build:ts build:docs",
"test": "npm-run-all -p format lint typecheck",
"ci": "npm-run-all -s build test",
"bump": "lerna version --no-private --yes --tag-version-prefix=''",
"deploy": "gh-pages -d packages/docs/dist -r https://${GH_TOKEN}@github.com/uStudioTeam/ts4ocds",
"prerelease": "node scripts/create-meta-files.js",
"prepack": "lerna exec --no-private --parallel -- copyfiles README.md lib",
"release": "lerna exec --no-private --parallel -- yarn publish lib --non-interactive",
"cd": "npm-run-all -p deploy release"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"copyfiles": "^2.4.0",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.14.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-unicorn": "^23.0.0",
"gh-pages": "^3.1.0",
"lerna": "^3.22.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"typescript": "^4.0.3"
}
}