-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.55 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
{
"name": "@neonredwood/ts-arrayx",
"version": "1.0.3",
"description": "Typescript Array extensions and utilities.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"build:release": "tsc -p tsconfig.release.json",
"clean": "rimraf dist/",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"test": "jest --config jest.config.js",
"dist:prepare": "yarn run clean && yarn run build:release && cp package.json dist/. && cp README.md dist/.",
"dist": "yarn run dist:prepare && cd dist && npm publish",
"preversion": "yarn run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neonredwood/ts-arrayx.git"
},
"keywords": [
"array",
"extensions"
],
"author": "Phil Kallos <phil@neonredwood.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/neonredwood/ts-arrayx/issues"
},
"homepage": "https://github.com/neonredwood/ts-arrayx#readme",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "5.59.0",
"@typescript-eslint/parser": "^5.0.1",
"eslint": "8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"jsdoc": "^4.0.2",
"prettier": "2.8.7",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"typedoc": "^0.24.4",
"typescript": "5.0.4"
},
"packageManager": "yarn@3.5.0"
}