-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 901 Bytes
/
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
{
"name": "@nomadinteractive/screenshot-tool",
"version": "1.1.2",
"description": "Screenshot automation tool using puppeteer",
"main": "run.js",
"scripts": {
"start": "node run.js",
"check": "nomad-codecheck ./",
"clean": "npm run check"
},
"bin": {
"ss": "./run.js"
},
"author": "Nomad Interactive <hello@nomadinteractive.co>",
"license": "MIT",
"repository": "github:nomadinteractive/screenshot-tool",
"dependencies": {
"puppeteer": "^1.19.0"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@nomadinteractive/commitlint-config": "1.0.3",
"husky": "^3.0.9",
"@nomadinteractive/nomad-codecheck": "1.0.37"
},
"commitlint": {
"extends": [
"@nomadinteractive/commitlint-config"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run clean",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}