-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 757 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 757 Bytes
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
{
"name": "swift-api-diff",
"version": "0.1.0",
"description": "Comment changes in public interfaces on GitHub Pull Requests",
"main": "src/entrypoint.js",
"files": [
"src"
],
"scripts": {
"lint": "tslint --format stylish --project .",
"prettier": "prettier --config node_modules/tslint-lt/.prettierrc.yml --write \"**/*.{ts,tsx,css,scss,html,js,jsx,yml,json,md}\" \"!{,dist}/**\"",
"test": "npm run lint && npm run prettier"
},
"author": "ltetzlaff",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ltetzlaff/swift-api-diff.git"
},
"dependencies": {
"actions-toolkit": "^2.2.0"
},
"devDependencies": {
"tslint-lt": "^1.11.0",
"typescript": "^3.7.4"
}
}