-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.68 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
{
"name": "typeshield",
"version": "1.0.2",
"description": "A collection of composable TypeScript/JavaScript type guards and assertions",
"author": "Dave T. Johnson <[email protected]>",
"homepage": "https://github.com/dtjohnson/typeshield",
"license": "ISC",
"main": "dist/cjs",
"module": "dist/esm",
"types": "dist/cjs",
"files": [
"dist"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/dtjohnson/typeshield.git"
},
"bugs": {
"url": "https://github.com/dtjohnson/typeshield/issues"
},
"dependencies": {
"deep-equal": "^2.0.1"
},
"devDependencies": {
"@types/deep-equal": "^1.0.1",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.21",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"eslint": "^6.7.2",
"eslint-plugin-jsdoc": "^18.4.3",
"eslint-plugin-sort-imports-es6-autofix": "^0.5.0",
"http-server": "^0.12.0",
"jest": "^24.9.0",
"markdown-toc": "^1.2.0",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"typedoc": "^0.15.3",
"typescript": "^3.7.3"
},
"scripts": {
"start": "jest --watch",
"build": "npm run clean && npm run compile:cjs && npm run compile:esm",
"compile:cjs": "tsc -p tsconfig.cjs.json",
"compile:esm": "tsc -p tsconfig.esm.json",
"clean": "rm -rf ./dist",
"docs": "ts-node -P guardref/tsconfig.json guardref && markdown-toc -i README.md && typedoc --tsconfig tsconfig.build.json --out docs src/index.ts",
"serve-docs": "http-server -c-1 -o docs/",
"test": "jest --no-cache",
"lint": "eslint --fix \"src/**/*.ts\"",
"prepublishOnly": "npm run build"
}
}