-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.66 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "point.js",
"description": "A JavaScript utility for point calculations",
"version": "0.0.5",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"scripts": {
"test": "npm run lint && jest --runInBand",
"testonly": "jest",
"tdd": "jest --watch",
"lint": "eslint src test",
"lint-and-fix": "eslint . --ext .ts --fix",
"precommit": "lint-staged",
"release": "rollout",
"build:dts": "tsc --emitDeclarationOnly -p . --outDir dts",
"build:notest": "rm -rf dts && rm -rf lib && npm run build:dts && rollup -c rollup.config.js",
"build": "npm run test && rm -rf dts && rm -rf lib && npm run build:dts && rollup -c rollup.config.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EmilEinarsen/point.js.git"
},
"keywords": [
"javascript",
"typescript",
"util",
"utility",
"point",
"point.js",
"point.ts"
],
"author": "Emil Einarsen",
"license": "MIT",
"bugs": {
"url": "https://github.com/EmilEinarsen/point.js/issues"
},
"homepage": "https://github.com/EmilEinarsen/point.js#readme",
"release": {
"conventionalCommits": true,
"publishDir": "lib"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"jest": {
"testEnvironment": "node",
"roots": [
"test"
],
"testRegex": "\\.(j|t)s$",
"testPathIgnorePatterns": [
"helpers\\.ts",
"\\.eslintrc\\.js",
"types\\.ts"
],
"verbose": true
},
"devDependencies": {
"@babel/cli": "^7.17.3",
"@babel/core": "^7.17.5",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.12.0",
"babel-jest": "^27.5.0",
"babel-preset-env-modules": "^1.0.1",
"dts-bundle-generator": "^6.5.0",
"eslint": "^8.8.0",
"eslint-config-jason": "^8.2.2",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-ts-expect": "^2.1.0",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^27.5.0",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1",
"rollup": "^2.67.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"typescript": "^4.5.5"
}
}