-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 1.12 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
{
"name": "snappify",
"version": "1.1.0",
"description": "A generator of Jest snapshot based tests for React components written with TypeScript",
"main": "index.js",
"scripts": {
"lint": "eslint */*.js",
"test": "jest",
"precommit": "lint-staged && npm test"
},
"keywords": [
"jest",
"snapshot",
"react",
"typescript",
"test",
"testing",
"component",
"generator"
],
"bin": "index.js",
"files": [
"index.js",
"src"
],
"author": "Denis Raslov <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/denisraslov/snappify.git"
},
"bugs": {
"url": "https://github.com/denisraslov/snappify/issues"
},
"homepage": "https://github.com/denisraslov/snappify#readme",
"dependencies": {
"minimist": "^1.2.0"
},
"devDependencies": {
"babel-preset-env": "^1.6.1",
"eslint-config-standard": "^17.0.0",
"husky": "^0.14.3",
"jest": "^22.4.2",
"lint-staged": "^7.1.0",
"prettier": "2.7.1"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write"
]
}
}