-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
67 lines (67 loc) · 2.06 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
59
60
61
62
63
64
65
66
67
{
"name": "@circleci/circleci-config-sdk",
"version": "0.0.0-development",
"description": "An SDK for building CircleCI Configuration files with JavaScript.",
"main": "dist/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"test": "npx jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --max-warnings 0",
"prettier": "prettier --write .",
"prettier:ci": "prettier --check .",
"build": "rm -rf ./dist && npx webpack --mode production",
"build:docs": "typedoc --tsconfig ./tsconfig.json --logLevel Verbose --excludeInternal --internalNamespace internalTypes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CircleCI-Public/circleci-config-sdk-ts.git"
},
"author": {
"name": "Kyle Tryon",
"email": "community-partner@circleci.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/CircleCI-Public/circleci-config-sdk-ts/issues"
},
"homepage": "https://github.com/CircleCI-Public/circleci-config-sdk-ts#readme",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/jest": "^27.5.2",
"@types/node": "^14.18.33",
"@types/webpack": "^5.0.0",
"@types/webpack-node-externals": "^2.5.3",
"@types/wicg-file-system-access": "^2020.9.5",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^7.23.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-tsdoc": "^0.2.11",
"husky": "^8.0.1",
"jest": "^28.1.3",
"prettier": "^2.3.1",
"ts-jest": "^28.0.7",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typedoc": "^0.22.5",
"typedoc-plugin-missing-exports": "^0.22.3",
"typescript": "^4.3.5",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.1",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"browser-or-node": "^2.0.0",
"yaml": "2.3.1"
},
"directories": {
"doc": "docs",
"test": "tests"
},
"keywords": [
"circleci"
],
"stability": "stable"
}