forked from miso-develop/ifttt-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.45 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "ifttt-cli",
"version": "0.1.2",
"description": "Manage IFTTT from the command line.",
"keywords": [
"ifttt",
"cli"
],
"author": "Miso Tanaka <miso.develop@gmail.com> (https://twitter.com/miso_develop)",
"contributors": [
"Scott J. Walter <sjwalter@gmail.com> (https://scottjwalter.info)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/miso-develop/ifttt-cli.git"
},
"homepage": "https://github.com/miso-develop/ifttt-cli#readme",
"bugs": {
"url": "https://github.com/miso-develop/ifttt-cli/issues"
},
"engines": {
"node": ">=8.0.0"
},
"main": "index.js",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"bin": {
"ifttt": "bin/ifttt.js"
},
"scripts": {
"precommit": "lint-staged",
"postcommit": "npm run build",
"test": "jest",
"build": "rollup -c",
"b": "npm run build",
"watch": "tsc -w",
"w": "npm run watch",
"lint": "tslint --fix 'src/**/*.ts' 'test/**/*.ts'",
"l": "npm run lint"
},
"lint-staged": {
"{src, test}/**/*.ts": [
"tslint --fix",
"git add"
]
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"js"
]
},
"dependencies": {
"puppeteer": "^1.14.0",
"rimraf": "^2.6.3",
"table": "^5.2.3",
"validator": "^10.11.0",
"yargs": "^13.2.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "*",
"@rollup/plugin-node-resolve": "*",
"@types/jest": "^24.0.11",
"@types/puppeteer": "^1.12.3",
"@types/rimraf": "^2.0.2",
"@types/table": "^4.0.5",
"@types/validator": "^10.11.0",
"@types/yargs": "^12.0.12",
"husky": "^1.3.1",
"jest": "^26.0.1",
"lint-staged": "^8.1.5",
"prettier": "^1.17.0",
"rollup": "*",
"rollup-plugin-typescript2": "^0.20.1",
"ts-jest": "^26.0.0",
"tslint": "^5.15.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"tsutils": "^3.10.0",
"typescript": "^3.4.2"
}
}