-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 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
{
"name": "@paosder/vector-map",
"homepage": "https://github.com/Paosder/vector-map",
"version": "1.1.0",
"description": "vector-like map class using es6 map with array.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"author": {
"name": "Paosder",
"email": "[email protected]"
},
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"vector",
"map",
"array",
"swap"
],
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/jest": "^28",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"esbuild": "^0.15.9",
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"jest": "^28",
"rimraf": "^3.0.2",
"standard-version": "^9.5.0",
"ts-jest": "^28",
"typedoc": "^0.23.15",
"typescript": "4.8.3"
},
"scripts": {
"clean": "rimraf dist && rimraf tsconfig.tsbuildinfo",
"build:source": "node esbuild.config.mjs",
"build:type": "tsc --emitDeclarationOnly",
"build": "yarn clean && yarn build:type && yarn build:source && yarn docgen",
"prepublish": "yarn test && yarn build",
"dev": "jest --watchAll",
"test": "yarn test:coverage && yarn test:lint",
"test:coverage": "jest --no-cache",
"test:lint": "eslint \"./src/**/*.{ts,tsx}\" --max-warnings=0",
"prepare": "husky install",
"docgen": "typedoc src/map.ts",
"release": "standard-version"
},
"packageManager": "[email protected]"
}