forked from joshfarrant/shortcuts-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.77 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
{
"name": "@joshfarrant/shortcuts-js",
"version": "0.1.6",
"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": "~23.3.9",
"@types/mkdirp": "^0.5.2",
"@types/node": "^10.12.8",
"@types/uuid": "^3.4.4",
"command-line-args": "^5.0.2",
"husky": "^1.1.4",
"inquirer": "^6.2.0",
"jest": "~23.6.0",
"jsdoc": "^3.5.5",
"rimraf": "~2.6.2",
"ts-jest": "~23.10.4",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-microsoft-contrib": "~5.2.1",
"tsutils": "~3.5.0",
"tui-jsdoc-template": "^1.2.2",
"typescript": "~3.1.6"
},
"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": "jest --coverage",
"test:watch": "jest --watch",
"docs": "jsdoc -c .jsdoc.json",
"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.7",
"bplist-parser": "^0.1.1",
"tslib": "~1.9.3",
"uuid": "^3.3.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && npm run lint && npm test"
}
}
}