This repository has been archived by the owner on Aug 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
75 lines (75 loc) · 2.07 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@joshfarrant/shortcuts-js",
"version": "0.6.0",
"description": "An iOS 12 Shortcuts creator",
"engineStrict": true,
"engines": {
"node": ">= 10"
},
"repository": {
"type": "git",
"url": "https://github.com/joshfarrant/shortcuts-js.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": "[email protected]",
"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"
}
}
}