UNPKG

apple-shortcuts

Version:
76 lines (75 loc) 2.11 kB
{ "name": "apple-shortcuts", "version": "0.6.0", "description": "An iOS 12 Shortcuts creator", "engineStrict": true, "engines": { "node": ">= 10" }, "repository": { "type": "git", "url": "https://github.com/lukeeey/apple-shortcuts.git" }, "keywords": [ "iOS", "iOS 12", "Shortcuts", "Apple", "Apple Shortcuts" ], "devDependencies": { "@types/jest": "~25.2.1", "@types/mkdirp": "^0.5.2", "@types/node": "^13.1.8", "@types/uuid": "^3.4.4", "command-line-args": "^5.0.2", "coveralls": "^3.0.2", "husky": "^4.2.0", "inquirer": "^7.0.0", "jest": "^25.1.0", "rimraf": "~3.0.0", "ts-jest": "^25.0.0", "tslint": "^5.11.0", "tslint-config-airbnb": "^5.11.1", "tslint-microsoft-contrib": "~6.2.0", "tsutils": "~3.21.0", "typedoc": "^0.16.8", "typedoc-plugin-shortcuts-js": "^0.1.0", "typescript": "~3.9.2" }, "main": "build/index.js", "types": "build/index.d.ts", "scripts": { "start": "node build/index.js", "clean": "rimraf coverage build tmp", "build": "tsc -p tsconfig.release.json", "build:watch": "tsc -w -p tsconfig.release.json", "lint": "tslint -t stylish --project \"tsconfig.json\"", "test": "npm run lint && jest --coverage", "test:watch": "jest --watch", "docs": "npm run docs:json && cd docs && npm run start", "docs:build": "npm run docs:json && cd docs && npm run build", "docs:json": "typedoc src --json docs/src/api/exported.json --target es6", "docs:html": "typedoc src --out documentation --mode file --target es6 --theme default", "preversion": "npm run clean && npm test", "version": "npm run build", "postversion": "git push && git push --tags" }, "author": { "name": "Josh Farrant", "email": "josh@farrant.me", "url": "https://farrant.me" }, "license": "GPL-3.0", "dependencies": { "bplist-creator": "0.0.8", "bplist-parser": "^0.2.0", "tslib": "~1.12.0", "uuid": "^3.3.2" }, "husky": { "hooks": { "pre-commit": "npm run build && npm test" } } }