-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.5 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.5 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
60
61
62
{
"name": "project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"postinstall": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lenakh97/get-workflow-runs.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lenakh97/get-workflow-runs/issues"
},
"homepage": "https://github.com/Lenakh97/get-workflow-runs#readme",
"devDependencies": {
"@nordicsemiconductor/asset-tracker-cloud-code-style": "10.0.7",
"@types/jest": "27.5.2",
"@types/node": "17.0.45",
"@types/parse-link-header": "1.0.1",
"jest": "^27.5.1",
"nock": "^13.5.0",
"prettier": "^2.8.8",
"ts-jest": "27.1.5",
"tsx": "3.14.0",
"typescript": "4.9.5"
},
"dependencies": {
"@nordicsemiconductor/from-env": "1.0.3",
"axios": "^0.27.2",
"date-fns": "^2.30.0",
"parse-link-header": "^1.0.1"
},
"jest": {
"preset": "ts-jest/presets/default-esm",
"testRegex": ".+\\.spec\\.ts$",
"globals": {
"ts-jest": {
"useESM": true
}
},
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
}
},
"prettier": "@nordicsemiconductor/asset-tracker-cloud-code-style/.prettierrc",
"lint-staged": {
"*.{md,json,yaml,yml}": [
"prettier --write"
],
"*.{ts,tsx}": [
"prettier --write",
"eslint --ext .js,.ts"
]
}
}