-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 958 Bytes
/
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
{
"name": "circleci-cdk",
"version": "1.1.8",
"description": "A CDK-toolkit for creating CircleCI-pipelines",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/marcus13371337/circle-cdk.git"
},
"keywords": [
"circleci"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"start": "node ./dist/index.js",
"test:linting": "eslint \"**/*.ts\" --max-warnings 0 && prettier --list-different \"**/*.ts\"",
"test:types": "tsc --noEmit",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"jest": "^27.3.1",
"prettier": "^2.3.2",
"ts-jest": "^27.0.7",
"typescript": "^4.4.2"
},
"dependencies": {
"change-case": "^4.1.2",
"yaml": "^1.10.2"
}
}