-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.31 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
{
"name": "typed-record",
"version": "1.0.3",
"description": "A record object that uses a key to retrieve a typed value",
"main": "dist/cjs/index.js",
"typings": "dist/cjs/index.d.ts",
"module": "dist/esm/index.js",
"scripts": {
"build": "tsc --build",
"clean": "rimraf dist",
"lint": "eslint .",
"pretest": "npm run build",
"test": "mocha \"dist/test/**/*.test.js\" --parallel",
"watch": "npm run build -- -w"
},
"files": [
"dist/cjs",
"dist/mjs"
],
"exports": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
},
"keywords": [
"typescript",
"javascript",
"map",
"record",
"weakmap",
"typed",
"typed-record"
],
"author": {
"email": "[email protected]",
"name": "tzachbon",
"url": "https://github.com/tzachbon"
},
"license": "MIT",
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"expect": "^29.3.1",
"jest-util": "^29.3.1",
"mocha": "^10.2.0",
"pleb": "^5.1.2",
"rimraf": "^3.0.2",
"ts-expect": "^1.3.0",
"typescript": "^4.9.4"
}
}