-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
52 lines (52 loc) · 1.48 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
{
"name": "frontend-testing",
"version": "1.0.0",
"description": "The repository for the code of the series of blog posts about Frontend testing",
"main": "index.js",
"scripts": {
"build": "webpack && cp public/* dist",
"test": "mocha 'test/**/test-*.js' && eslint test lib",
"test:debug": "mocha --debug-brk 'test/**/test-*.js'",
"start": "webpack-dev-server --hot",
"deploy": "surge --project dist --domain frontend-testing.surge.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/create-oss/frontend-testing.git"
},
"keywords": [
"testing",
"tutorial"
],
"author": "Gil Tayar <[email protected]>",
"license": "UNLICENSE",
"private": true,
"bugs": {
"url": "https://github.com/create-oss/frontend-testing/issues"
},
"homepage": "https://github.com/create-oss/frontend-testing#readme",
"devDependencies": {
"chai": "^3.5.0",
"chromedriver": "^2.27.3",
"eslint": "^3.14.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-jsx": "0.0.2",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.9.0",
"eslint-plugin-standard": "^2.0.1",
"express": "^4.14.1",
"install": "^0.8.6",
"jsdom": "^9.11.0",
"mocha": "^3.2.0",
"npm": "^4.1.2",
"promise-retry": "^1.1.1",
"selenium-webdriver": "^3.1.0",
"surge": "^0.18.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2"
}
}