-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1 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
{
"name": "kettlejs",
"version": "0.0.1",
"description": "A data structure and algorithms library written in TypeScript.",
"main": "dist/commonjs/index.js",
"types": "dist/commonjs/index.d.ts",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc && tsc -p tsconfig-esm.json",
"test": "jest",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/namralkeeg/kettlejs.git"
},
"author": "Larry Lopez <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/namralkeeg/kettlejs/issues"
},
"homepage": "https://github.com/namralkeeg/kettlejs#readme",
"engines": {
"node": ">=10.4"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"jest": "^26.4.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
}
}