forked from GektorGrom/frontend-testing
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
62 lines (62 loc) · 1.9 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
53
54
55
56
57
58
59
60
61
62
{
"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 --no-timeouts -r babel-register -r babel-polyfill 'test/**/test-*.js' && eslint test lib",
"eslint": "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 <gil@tayar.org>",
"license": "UNLICENSE",
"private": true,
"bugs": {
"url": "https://github.com/create-oss/frontend-testing/issues"
},
"homepage": "https://github.com/create-oss/frontend-testing#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chromedriver": "^2.37.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-jsx": "^5.0.0",
"eslint-plugin-jsx": "0.0.2",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"express": "^4.16.3",
"jsdom": "^11.6.2",
"mocha": "^5.0.5",
"selenium-webdriver": "^3.6.0",
"surge": "^0.20.1",
"webpack": "^4.4.1",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1"
},
"dependencies": {
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-node": "^6.0.1",
"eyes.selenium": "0.0.78",
"react": "^16.3.0",
"react-dom": "^16.3.0"
}
}