-
Notifications
You must be signed in to change notification settings - Fork 286
/
package.json
31 lines (31 loc) · 849 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
{
"name": "js-mocking-fundamentals",
"version": "1.0.0",
"description": "JavaScript Mocking Fundamentals",
"private": true,
"main": "index.js",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"create-jest-runner": "^0.7.0",
"glob": "^7.1.6",
"jest": "^26.6.3"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kentcdodds/js-mocking-fundamentals.git"
},
"keywords": [],
"author": "Kent C. Dodds <[email protected]> (http://kentcdodds.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kentcdodds/js-mocking-fundamentals/issues"
},
"homepage": "https://github.com/kentcdodds/js-mocking-fundamentals#readme"
}