-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.61 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
{
"name": "@testplane/profiler",
"version": "1.0.1",
"description": "Plugin for Testplane for commands execution profiling",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && npm run test-unit",
"test-unit": "mocha test",
"build": "webpack --config webpack.prod.js",
"prepublish": "npm run build",
"start": "webpack --progress --colors --watch"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/gemini-testing/testplane-profiler.git"
},
"keywords": [
"testplane",
"hermione",
"plugin",
"profiler"
],
"author": "Anton Usmansky <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gemini-testing/testplane-profiler/issues"
},
"homepage": "https://github.com/gemini-testing/testplane-profiler#readme",
"dependencies": {
"bluebird": "^3.5.0",
"chart.js": "^2.7.2",
"fs-extra": "^4.0.2",
"gemini-configparser": "^1.0.0",
"lodash": "^4.17.4",
"react-chartjs-2": "^2.7.4"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.0.2",
"css-loader": "^0.28.7",
"eslint": "^3.19.0",
"eslint-config-gemini-testing": "^2.4.0",
"material-ui": "^0.19.3",
"mocha": "^3.4.2",
"proxyquire": "^1.8.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-table": "^6.6.0",
"sinon": "^2.3.5",
"style-loader": "^0.19.0",
"webpack": "^3.6.0",
"webpack-merge": "^4.1.0"
}
}