This repository was archived by the owner on Apr 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.45 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@ergodark/types",
"version": "1.0.17",
"description": "Various utility and helper types for TypeScript projects",
"keywords": [
"type",
"types",
"typescript",
"ergodark",
"ts",
"utility",
"helper"
],
"repository": {
"type": "git",
"url": "https://github.com/ergodark/ts-types"
},
"license": "Unlicense",
"author": "Xunnamius",
"sideEffects": false,
"main": "dist/modules/index.js",
"module": "dist/modules/index.js",
"types": "dist/modules/index.d.ts",
"files": [
"/dist",
"/LICENSE",
"/package.json",
"/README.md"
],
"scripts": {
"build": "npm run clean && tsc --project tsconfig.types.json && babel src --extensions .ts --out-dir dist/modules",
"check-types": "command -v unbuffer >/dev/null && (unbuffer tsc; unbuffer eslint .) | less -R -FX || (tsc; eslint .)",
"clean": "rm -rf dist",
"list-tasks": "npm run",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"publishGuard": "npx sort-package-json && npm run check-types",
"repl": "command -v rlwrap >/dev/null && rlwrap npx -p @babel/core -p @babel/node babel-node",
"test": "npm run check-types"
},
"devDependencies": {
"@babel/cli": "^7.12.16",
"@babel/core": "^7.12.16",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-decorators": "^7.12.13",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/plugin-proposal-function-bind": "^7.12.13",
"@babel/plugin-proposal-json-strings": "^7.12.13",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.13",
"@babel/plugin-proposal-numeric-separator": "^7.12.13",
"@babel/plugin-proposal-optional-chaining": "^7.12.16",
"@babel/plugin-proposal-throw-expressions": "^7.12.13",
"@babel/preset-env": "^7.12.16",
"@babel/preset-typescript": "^7.12.16",
"@types/confusing-browser-globals": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-source-map-support": "^2.1.3",
"confusing-browser-globals": "^1.0.10",
"eslint": "^7.20.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-react": "^7.22.0",
"source-map-support": "^0.5.19",
"typescript": "^4.1.5"
}
}