-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.32 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.32 KB
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
{
"name": "unknown",
"version": "0.2.6",
"description": "A TypeScript utility library for interacting with the 'unknown' type.",
"keywords": [
"typescript"
],
"author": "BTOdell",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BTOdell/unknown.git"
},
"bugs": {
"url": "https://github.com/BTOdell/unknown/issues"
},
"homepage": "https://github.com/BTOdell/unknown",
"type": "module",
"main": "./dist/cjs/unknown.js",
"module": "./dist/unknown.js",
"exports": {
".": {
"require": "./dist/cjs/unknown.js",
"default": "./dist/unknown.js"
}
},
"types": "./dist/unknown.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/package.json"
],
"directories": {
"lib": "dist"
},
"devDependencies": {
"@types/chai": "^4.3.14",
"@types/mocha": "^9.1.1",
"@types/node": "^12.12.6",
"chai": "^4.4.1",
"mocha": "^9.2.2",
"shx": "^0.3.4",
"typescript": "^5.4.5"
},
"scripts": {
"build": "tsc -b src && shx cp ./package.cjs.json ./dist/cjs/package.json",
"pretest": "npm run build",
"test": "tsc -b test && mocha",
"prepublishOnly": "npm run build",
"clean": "shx rm -rf ./dist ./test/**/*.js ./**/*.tsbuildinfo"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.14.0"
}
}