-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.92 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
{
"name": "@cadre/ts-utils",
"version": "2.0.0",
"description": "Utility functions, settings, and setups for Cadre TypeScript projects.",
"keywords": [
"cadre",
"typescript",
"utils"
],
"repository": {
"type": "git",
"url": "git://github.com/siggame/Cadre-TS-Utils"
},
"license": "MIT",
"private": false,
"main": "index.js",
"types": "index.d.ts",
"sideEffects": false,
"devDependencies": {
"@types/eslint": "6.8.1",
"@types/fs-extra": "9.0.1",
"@types/node": "14.0.5",
"@typescript-eslint/eslint-plugin": "3.0.1",
"eslint": "7.1.0",
"eslint-config-jacobfischer": "github:JacobFischer/eslint-config.git#d2c31103640a50530ff682f68253c65128d50ff9",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-import-order-alphabetical": "1.0.0",
"eslint-plugin-jsdoc": "25.4.3",
"eslint-plugin-prettier": "3.1.3",
"fs-extra": "9.0.0",
"husky": "4.2.5",
"prettier": "2.0.5",
"shx": "0.3.2",
"ts-node": "8.10.1",
"typedoc": "0.17.7",
"typedoc-plugin-external-module-name": "3.1.0",
"typedoc-plugin-internal-external": "2.1.1",
"typescript": "3.9.3"
},
"engines": {
"node": ">=9.0.0"
},
"scripts": {
"test": "npm run lint && npm run build:test",
"build": "tsc",
"build:test": "tsc --noEmit",
"build:watch": "tsc --watch",
"clean": "shx rm -rf dist docs",
"lint": "eslint ./ --max-warnings=0",
"prettier:base": "prettier **/*.{js,ts}",
"prettier": "npm run prettier:base -- --write",
"prettier:test": "npm run prettier:base -- --check",
"rebuild": "npm run clean && npm run build",
"docs": "shx rm -rf temp && ts-node scripts/docs.ts temp/ && cp tsconfig.json temp/tsconfig.json && typedoc temp/ --mode modules --out temp/docs",
"pre:pack": "npm run build && shx cp -R ./dist/* ./"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
}
}