This repository has been archived by the owner on Nov 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.71 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "arryx",
"version": "1.0.0",
"description": "A lightweight implementation over native Javascript array for some extra sauce.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Samrith Shankar <samrith.shankar@outlook.com>",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git@github.com:samrith-s/arrayx.git"
},
"files": [
"lib/",
"README.md",
"LICENSE"
],
"scripts": {
"postinstall": "husky install",
"prepublishOnly": "yarn build && node scripts/prepublish",
"postpublish": "node scripts/postpublish",
"dev": "tsup --sourcemap --watch src --watch tsup.config.ts",
"build": "tsup",
"release": "standard-version",
"test": "mocha",
"test:watch": "mocha --watch",
"lint": "eslint src/**/* tests/**/* --ext ts"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/chai": "^4.2.19",
"@types/mocha": "^8.2.2",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"chai": "^4.3.4",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-sort-class-members": "^1.11.0",
"husky": "^7.0.0",
"mocha": "^9.0.2",
"prettier": "^2.3.2",
"standard-version": "^9.3.0",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.9.0",
"tsup": "^4.12.0",
"typescript": "^4.3.5"
},
"keywords": [
"stack",
"array",
"array stack",
"stackjs",
"stack javascript",
"lifo",
"fifo",
"array",
"clone",
"peek"
]
}