-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.03 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
{
"name": "jest-snapshot-get-started",
"version": "1.1.0",
"description": "Automatically generate snapshot files for your project React / React-native projects",
"main": "findFolders.js",
"scripts": {
"build": "babel findFolders.js -o compiled.js",
"test": "mocha",
"test:watch": "mocha --watch"
},
"engines": {
"node": ">=6.0.0"
},
"author": "“Truls <“[email protected]”>",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"del": "^2.2.2",
"mocha": "^3.2.0"
},
"dependencies": {
"mkdirp": "^0.5.1"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skeie/jest-snapshot-starter.git"
},
"bin": {
"jest-snapshot-generate": "./index.js"
},
"keywords": [
"jest",
"javascript",
"react",
"test"
],
"bugs": {
"url": "https://github.com/skeie/jest-snapshot-starter/issues"
},
"homepage": "https://github.com/skeie/jest-snapshot-starter#readme"
}