-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.52 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
{
"name": "@lego/pulumi-link-mobility-provider",
"version": "1.0.5",
"description": "A custom provider used to create resources within the Link Mobility Platform",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p .",
"lint": "eslint ./src --ext .ts",
"test": "jest --coverage",
"test:watch": "yarn test --watch",
"format": "prettier --write \"**/**/*.ts\"",
"release": "semantic-release",
"prepare": "husky"
},
"files": [
"dist",
"README.md"
],
"author": "Alin Stefan Olaru <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/LEGO/pulumi-link-mobility-provider.git"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/LEGO/pulumi-link-mobility-provider/issues"
},
"homepage": "https://github.com/LEGO/pulumi-link-mobility-provider#readme",
"dependencies": {
"@pulumi/pulumi": "^3.126.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^28.1.0",
"@types/node": "^18.8.3",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.50.0",
"husky": "^9.0.11",
"jest": "^28.1.0",
"prettier": "^3.2.5",
"semantic-release": "^20.1.1",
"ts-jest": "^28.0.3",
"typescript": "^4.7.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/*.test.ts"
]
}
}