-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 830 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 830 Bytes
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
{
"name": "jest-exercises",
"private": true,
"version": "1.0.0",
"description": "Collection of exercises to get you start and familiar with testing using Jest",
"bugs": {
"url": "https://github.com/NashReact/jest-exercises/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/NashReact/jest-exercises.git"
},
"author": {
"name": "Kyle Welch",
"email": "kwelch0626@gmail.com"
},
"scripts": {
"start": "babel-node index.js --presets latest,stage-2"
},
"license": "MIT",
"dependencies": {
"babel-cli": "^6.22.2",
"babel-preset-latest": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"chalk": "^1.1.3",
"git-user-name": "^1.2.0",
"git-username": "^0.5.0",
"github-current-user": "^2.5.0",
"ncp": "^2.0.0",
"prompt": "^1.0.0"
}
}