This repository has been archived by the owner on Feb 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
139 lines (139 loc) · 4.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "ottr",
"version": "0.1.7",
"description": "Run end-to-end tests in a web browser",
"homepage": "https://github.com/uber/ottr",
"bugs": {
"url": "https://github.com/uber/ottr/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/uber/ottr.git"
},
"keywords": [
"testing",
"javascript",
"js"
],
"author": "Keith Lea",
"license": "MIT",
"main": "lib/api/index.js",
"bin": {
"ottr": "lib/cli/cli.js"
},
"scripts": {
"build": "rm -rf lib && babel src/main -d lib --source-maps && mkdir -p lib/static && cp -Rv src/main/ui/static/* lib/static",
"build-test": "npm run build && babel src -d dist-test --source-maps && mkdir -p dist-test/test/cli/chrome/fixtures && cp -rf fixtures/*.js* dist-test/test/cli/chrome/fixtures",
"cover": "cross-env NODE_ENV=test npm run build-test && cross-env NODE_ENV=test nyc node dist-test/test/index.spec.js && nyc report",
"test": "npm run cover",
"travis": "npm run lint && npm run flow && npm run cover && flow-coverage-report",
"flow": "flow check",
"check": "npm run prettier && npm run lint && npm run flow && npm run test",
"prettier": "prettier --single-quote --bracket-spacing false --parser flow --tab-width 2 --print-width 100 --write \"{src,test}/**/*.js\"",
"lint": "eslint src",
"unpm-prepublish": "echo 'no pre-publish script yet'",
"watch": "npm run build && babel src/main -d lib --source-maps --watch",
"watch-all": "nodemon --ext js,html --exec 'npm run build' --watch src",
"watch-test": "npm run build-test && babel src -d dist-test --source-maps --watch",
"prettier-amend-commit": "npm run prettier && git add -u && git commit --amend --no-edit",
"pre-arc-diff": "npm run prettier-amend-commit && npm run lint && npm run flow"
},
"engines": {
"node": ">=6.10",
"npm": ">=4.0"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.2",
"bufferhelper": "^0.2.1",
"commander": "^2.13.0",
"express": "^4.16.2",
"font-awesome": "^4.7.0",
"fs-extra": "^5.0.0",
"get-port": "^3.2.0",
"gifencoder": "^1.1.0",
"harviewer": "janodvarko/harviewer#814e907ba4eddde6acde9954be21ec9d4b398f6e",
"http-proxy-middleware": "^0.17.4",
"http-proxy-response-rewrite": "0.0.1",
"immer": "^0.6.1",
"istanbul-lib-coverage": "^1.1.1",
"jquery": "^3.3.1",
"jquery-simulate-ext": "^1.3.0",
"node-fetch": "^1.7.3",
"pngjs": "^3.3.2",
"puppeteer": "^1.0.0",
"react": "^16.2.0",
"react-document-title": "^2.0.3",
"react-dom": "^16.2.0",
"react-fontawesome": "^1.6.1",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-trigger-change": "^1.0.2",
"recursive-copy": "^2.0.9",
"redux": "^3.7.2",
"redux-observable": "^0.17.0",
"redux-promise": "^0.5.3",
"rxjs": "^5.5.6",
"socket.io": "^2.0.4",
"source-map": "^0.5.7",
"source-map-resolve": "^0.5.1",
"source-map-support": "^0.4.18",
"styled-components": "^2.4.0",
"tape": "^4.9.0",
"typeface-open-sans": "0.0.54",
"typeface-ubuntu": "0.0.54",
"typeface-ubuntu-mono": "0.0.54",
"util.promisify": "^1.0.0",
"webpack": "^3.10.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^8.0.1",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.1.3",
"eslint": "^4.16.0",
"eslint-config-uber-es2015": "^3.1.1",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.2.1",
"flow-bin": "^0.66.0",
"flow-coverage-report": "^0.4.1",
"flow-typed": "^2.2.0",
"istanbul": "^0.4.5",
"mkdirp": "^0.5.1",
"nodemon": "^1.14.7",
"nyc": "^11.4.1",
"prettier": "^1.7.4",
"tape-promise": "^2.0.1",
"tmp": "0.0.33"
},
"nyc": {
"check-coverage": true,
"lines": 80,
"reporter": [
"cobertura",
"html"
]
},
"flow-coverage-report": {
"threshold": 90,
"flowCommandPath": "node_modules/.bin/flow",
"includeGlob": [
"src/main/**/*.js"
],
"type": [
"text",
"html",
"json"
]
}
}