-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 889 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 889 Bytes
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
{
"name": "ballmerpeak",
"version": "1.0.2",
"description": "Selection of Misc Functions",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/damiensawyer/ballmerpeak.git"
},
"author": "K.Pruehss, D.Sawyer",
"license": "ISC",
"bugs": {
"url": "https://github.com/damiensawyer/ballmerpeak/issues"
},
"homepage": "https://github.com/damiensawyer/ballmerpeak#readme",
"devDependencies": {
"@types/jest": "^26.0.13",
"jest": "^26.4.2",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
},
"files": [
"lib"
],
"jest": {
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "^.+\\.spec\\.ts$"
}
}