-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.32 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.32 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
{
"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)",
"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",
"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": {
"@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": "^24.7.1",
"lint-staged": "^8.1.5",
"prettier": "^1.17.0",
"rollup": "^1.9.0",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.1",
"rollup-plugin-typescript2": "^0.20.1",
"rollup-plugin-uglify": "^6.0.2",
"ts-jest": "^24.0.2",
"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"
}
}