-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "@voiceflow/circleci-config-sdk-orb-import",
"version": "0.1.1",
"description": "A lightweight utility to import orbs for use with the CircleCI Config SDK",
"main": "dist/index.js",
"bugs": {
"url": "https://github.com/voiceflow/circleci-config-sdk-orb-import/issues"
},
"homepage": "https://github.com/voiceflow/circleci-config-sdk-orb-import",
"keywords": [
"circleci",
"sdk"
],
"author": "Voiceflow",
"license": "ISC",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/voiceflow/circleci-config-sdk-orb-import.git"
},
"dependencies": {
"@circleci/circleci-config-parser": "^0.10.0-alpha.1",
"@circleci/circleci-config-sdk": "^0.10.1",
"undici": "^5.12.0",
"yaml": "^2.1.3"
},
"devDependencies": {
"@voiceflow/eslint-config": "^7.0.0",
"eslint": "^8.27.0",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"scripts": {
"build": "tsc",
"clean": "rm -r dist node_modules",
"lint": "eslint \"./**/*.ts\"",
"lint:fix": "yarn lint --fix",
"lint:quiet": "yarn lint --quiet",
"lint:report": "yarn lint:output"
},
"files": [
"./dist/**"
],
"packageManager": "[email protected]"
}