-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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
{
"name": "extrajs",
"version": "0.26.0",
"description": "Javascript helpers for lazy people.",
"keywords": [
"javascript",
"javascript-library",
"helper",
"utility",
"native"
],
"homepage": "https://github.com/chharvey/extrajs#readme",
"bugs": {
"url": "https://github.com/chharvey/extrajs/issues"
},
"license": "MIT",
"author": "Chris Harvey <1362083+chharvey@users.noreply.github.com>",
"files": [
"dist/",
"tsconfig.json"
],
"main": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/chharvey/extrajs.git"
},
"scripts": {
"predist": "eslint . --ext .cjs,.cts,.js,.mjs,.mts,.ts",
"dist": "tsc",
"test": "mocha -r ts-node/esm --loader='ts-node/esm' './test/*.ts'",
"docs": "typedoc",
"build": "rm -rf ./dist/ ./docs/api/ && npm run dist && npm run test && npm run docs",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/mocha": "^10.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0",
"mocha": "^10.0.0",
"ts-node": "^10.0.0",
"typedoc": "^0.25.0",
"typescript": "~5.4.0"
},
"engines": {
"node": ">=18"
}
}