forked from robinpowered/frontend-interview-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.08 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
{
"name": "frontend-interview-challenge",
"version": "1.0.0",
"description": "## Challenges",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/robinpowered/frontend-interview-challenge.git"
},
"author": "Atticus White <contact@atticuswhite.com> (http://atticuswhite.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/robinpowered/frontend-interview-challenge/issues"
},
"homepage": "https://github.com/robinpowered/frontend-interview-challenge#readme",
"devDependencies": {
"babel-jest": "^19.0.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"enzyme": "^2.7.1",
"jest": "^19.0.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-test-renderer": "^15.4.2",
"regenerator-runtime": "^0.10.3"
},
"dependencies": {
"react": "^15.4.2"
}
}