This repository has been archived by the owner on Sep 19, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 2.52 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
54
55
56
57
{
"name": "@typed/prelude",
"description": "The TypeScript Standard Library",
"repository": "https://github.com/TylorS/typed-prelude",
"author": "Tylor Steinberger <[email protected]>",
"license": "Parity-6.0.0",
"private": true,
"version": "0.1.0",
"scripts": {
"clean:cjs": "lerna exec rimraf cjs && tsc --build packages/tsconfig.cjs.json --clean",
"clean:esm": "lerna exec rimraf esm && tsc --build packages/tsconfig.json --clean",
"clean": " npm run clean:cjs && npm run clean:esm && lerna exec rimraf node_modules",
"docs": "typedoc --options typedoc.json --excludeNotExported --excludeExternals packages/*/source",
"new:package": "ts-node tools/new-package",
"update:package": "ts-node tools/update-package-json",
"update:tsconfig": "ts-node tools/update-tsconfig-json",
"update:code-workspace": "ts-node tools/update-code-workspace",
"update:vscode-settings": "ts-node tools/update-vscode-settings",
"update": "npm run update:package && npm run update:tsconfig && lerna bootstrap --hoist && npm run update:code-workspace && npm run update:vscode-settings",
"postinstall": "npm run update",
"build:cjs": "tsc --build packages/tsconfig.cjs.json",
"build:esm": "tsc --build packages/tsconfig.json",
"build": "npm run build:cjs && npm run build:esm",
"rebuild": "npm run clean && npm run update && npm run build",
"watch": "npm run build:cjs -- --incremental --watch & npm run build:esm -- --incremental --watch",
"lint": "tslint -p tsconfig.json --fix",
"test": "typed-test && npm run lint",
"test:ci": "lerna bootstrap --hoist && npm run build && npm run test",
"release": "npm run test:ci && lerna publish --verify-access",
"release:beta": "npm run release -- --canary --preid beta --dist-tag beta",
"release:alpha": "npm run release -- --canary --preid alpha --dist-tag alpha"
},
"devDependencies": {
"@strictsoftware/typedoc-plugin-monorepo": "0.3.1",
"@typed/test": "9.5.0",
"@types/node": "13.13.28",
"@types/yargs": "15.0.9",
"lerna": "3.22.1",
"lint-staged": "10.4.2",
"prettier": "2.1.2",
"terser": "4.8.0",
"ts-node": "8.10.2",
"tslib": "2.0.3",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-no-circular-imports": "0.7.0",
"tslint-plugin-prettier": "2.3.0",
"typedoc": "0.19.2",
"typedoc-plugin-barrel-export": "1.0.0",
"typedoc-plugin-pages": "1.0.1",
"typescript": "3.9.7",
"yargs": "15.4.1"
},
"peerDependencies": {
"tslib": "^2.0.0"
}
}