-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.76 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
{
"name": "tvpp-log-parser",
"version": "0.0.1",
"description": "An awesome module",
"license": "MIT",
"repository": "Turox/tvpp-log-parser",
"main": "dist/LogParser.js",
"author": {
"name": "Turox",
"email": "[email protected]",
"url": "https://github.com/Turox"
},
"files": [
"dist",
"src"
],
"scripts": {
"test": "jest",
"web": "node src/web/index.js",
"coverage": "npm test -- --coverage",
"postcoverage": "open-cli coverage/lcov-report/index.html",
"lint": "eslint .",
"flow": "flow check",
"docs": "documentation readme src/parserLib --section=API",
"postdocs": "git add README.md",
"clean": "rimraf dist",
"flowbuild": "flow-copy-source src/parserLib dist/js/",
"prebuild": "npm run docs && npm run clean && npm run flowbuild",
"build": "babel src/parserLib/ -d dist/js/",
"prerelease": "npm run lint && npm test && npm run build",
"release": "standard-version",
"postpublish": "git push origin master --follow-tags"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"keywords": [
"tvpp-log-parser"
],
"dependencies": {
"@types/html2canvas": "0.0.35",
"@tyriar/fibonacci-heap": "2.0.9",
"babel-polyfill": "6.26.0",
"d3": "5.12.0",
"express": "4.17.1",
"fastpriorityqueue": "0.6.3",
"html2canvas": "1.0.0-rc.5",
"pug": "2.0.4",
"sigma": "1.2.1"
},
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.5",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/preset-env": "7.4.5",
"@babel/preset-flow": "7.0.0",
"babel-core": "6.26.3",
"babel-eslint": "10.0.2",
"babel-jest": "24.8.0",
"babel-loader": "8.0.6",
"babel-minify": "0.5.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babelify": "10.0.0",
"browser-sync": "2.26.7",
"browserify": "16.2.3",
"documentation": "11.0.1",
"eslint": "6.0.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "5.0.0",
"eslint-plugin-flowtype": "3.10.5",
"eslint-plugin-flowtype-errors": "4.1.0",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-prettier": "3.1.0",
"flow-bin": "0.101.1",
"flow-copy-source": "2.0.6",
"gulp": "4.0.2",
"gulp-babel": "8.0.0",
"gulp-concat": "2.6.1",
"gulp-nodemon": "2.4.2",
"husky": "2.4.1",
"jest": "24.8.0",
"lint-staged": "8.2.1",
"open-cli": "5.0.0",
"prettier": "1.18.2",
"rimraf": "2.6.3",
"standard-version": "9.0.0",
"vinyl-buffer": "1.0.1",
"vinyl-source-stream": "2.0.0"
}
}