-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "is-js",
"version": "0.2.1",
"description": "A small library for identifying Javascript types.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist/ && tsc",
"docs": "typedoc --theme markdown --disableSources --readme none --hideBreadcrumbs --categorizeByGroup false --sort alphabetical --out docs src/index.ts && sed -i '' '/^## Usage/,$d' README.md && echo '## Usage' >> README.md && tail -n +4 docs/README.md | sed '/## Functions/,+1d' >> README.md",
"test": "jest"
},
"keywords": [
"javascript",
"types",
"util",
"is.js"
],
"author": "Scott Rabin <[email protected]> (http://scottrabin.com)",
"license": "MIT",
"homepage": "https://github.com/scottrabin/is-js",
"repository": {
"type": "git",
"url": "git://github.com/scottrabin/is-js.git"
},
"bugs": {
"url": "https://github.com/scottrabin/is-js/issues",
"email": "[email protected]"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typedoc": "^0.22.13",
"typedoc-plugin-markdown": "^3.11.14",
"typescript": "^4.6.2"
}
}