Files

70 lines
1.7 KiB
JSON
Raw Permalink Normal View History

{
2023-02-24 08:36:39 -08:00
"name": "@actions/workflow-parser",
2023-04-14 19:05:30 +00:00
"version": "0.3.3",
"license": "MIT",
"type": "module",
"source": "./src/index.ts",
2023-03-23 14:30:31 -07:00
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": "./dist/index.js"
},
"./*": {
"import": "./dist/*.js"
}
},
"typesVersions": {
"*": {
".": [
"dist/index.d.ts"
],
"*": [
"dist/*.d.ts"
]
}
},
"repository": {
"type": "git",
2023-02-23 07:42:25 -08:00
"url": "https://github.com/actions/languageservices"
},
"scripts": {
"build": "tsc --build tsconfig.build.json",
"clean": "rimraf dist",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
2023-03-16 14:37:50 -04:00
"lint": "eslint 'src/**/*.ts'",
"lint-fix": "eslint --fix 'src/**/*.ts'",
"prepublishOnly": "npm run build && npm run test",
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" jest",
"test-xlang": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --testPathPattern xlang",
"test-watch": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --watch",
"watch": "tsc --build tsconfig.build.json --watch"
},
"dependencies": {
2023-04-14 19:05:30 +00:00
"@actions/expressions": "^0.3.3",
2023-01-24 15:43:30 -08:00
"cronstrue": "^2.21.0",
"yaml": "^2.0.0-8"
},
"engines": {
"node": ">= 16.15"
},
"files": [
"dist/**/*"
],
"devDependencies": {
"@types/jest": "^29.0.3",
2023-03-20 18:33:34 -04:00
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.0.3",
2023-01-30 12:37:29 -08:00
"prettier": "^2.8.3",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
2023-03-16 20:34:31 +00:00
}