-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.58 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.58 KB
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
{
"name": "solid-hammers",
"version": "0.1.0",
"description": "A set of JavaScript functions and classes for all occasions. Ships with TypeScript support",
"repository": "https://github.com/J3MPA/solid-hammers.git",
"author": "Jens Karlsson <jens_karlsson95@hotmail.com>",
"contributors": [
"Jens Karlsson <jens_karlsson95@hotmail.com>"
],
"license": "MIT",
"private": false,
"main": "index.js",
"types": "index.d.ts",
"files": [
"functions/**/*.d.ts",
"functions/**/*.js.map",
"functions/**/*.js",
"math/**/*.d.ts",
"math/**/*.js.map",
"math/**/*.js",
"data/**/*.d.ts",
"data/**/*.js.map",
"data/**/*.js",
"/types",
"index.d.ts",
"index.js.map",
"index.js"
],
"scripts": {
"build:clean": " tsc --build --clean",
"build": "tsc --project ./tsconfig.build.json",
"check:types": "tsc --noEmit true",
"lint": "eslint . --ext .ts",
"postpublish": "./bin/post-publish.sh",
"prepublishOnly": "./bin/pre-publish.sh",
"publish:dry-run": "npm publish --dry-run",
"test:coverage": "yarn test:unit --coverage",
"test:unit": "jest",
"test": "yarn test:unit"
},
"devDependencies": {
"@types/jest": "29.4.0",
"@types/node": "18.15.0",
"@typescript-eslint/eslint-plugin": "5.54.1",
"@typescript-eslint/parser": "5.54.1",
"eslint": "8.36.0",
"jest": "^29.6.1",
"ts-jest": "^29.1.1",
"ts-node": "10.9.1",
"typescript": "^5.1.6"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"volta": {
"node": "16.16.0",
"yarn": "1.22.19"
}
}