forked from mironal/TwitterAPIKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.48 KB
/
package.json
File metadata and controls
26 lines (26 loc) · 1.48 KB
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
{
"name": "twitterapikit",
"version": "1.0.0",
"description": "Swift library for the Twitter API v1 and v2 🍷",
"main": "index.js",
"scripts": {
"config": "./.dotfiles/config.sh",
"install:swiftlint": "brew install swiftlint",
"install:swiftformat": "brew install swiftformat",
"install:all": "npx npm-run-all --sequential install:swiftlint install:swiftformat config",
"format": "swiftformat . --header \"{file}\\nCopyright (c) {year} GetAutomaApp\\nAll source code and related assets are the property of GetAutomaApp.\\nAll rights reserved.\\n\\nThis Package is a heavily modified fork of https://github.com/mironal/TwitterAPIKit.\\nThis Package is distributable through a modified version of the MIT License.\"",
"lint": "swiftlint --config=.swiftlint.yml .",
"update:submodules": "git submodule foreach --recursive 'branch=$(git remote show origin | awk \"/HEAD branch/ {print \\$NF}\"); git checkout $branch && git pull origin $branch' && CHANGED=$(git status --porcelain | grep '^ M \\.dotfiles' || true) && if [ -n \"$CHANGED\" ]; then npm run config; fi && git add -A && git commit -m \"chore: update submodules\" || echo 'No changes to commit'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GetAutomaApp/TwitterAPIKit.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GetAutomaApp/TwitterAPIKit/issues"
},
"homepage": "https://github.com/GetAutomaApp/TwitterAPIKit#readme"
}