forked from gabrielcsapo/lcov-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.12 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
{
"name": "lcov-server",
"version": "1.3.2",
"description": "🎯 A simple lcov server & cli parser",
"main": "index.js",
"homepage": "https://github.com/gabriel-araujjo/lcov-server#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/gabriel-araujjo/lcov-server.git"
},
"scripts": {
"lint": "eslint .",
"test": "tape test/lib/**/*.js test/index.js",
"coverage": "tap test/lib/**.js --coverage --coverage-report=lcov",
"prepare": "npm run build",
"build": "npm run build:client && npm run build:server",
"build:server": "babel index.js --out-dir ./distributed && babel lib --out-dir ./distributed/lib && babel bin --out-dir ./distributed/bin && cp package.json ./distributed/ && cp -r dist ./distributed",
"build:client": "NODE_ENV=production webpack --progress",
"watch": "webpack --watch",
"start": "./bin/lcov-server.js --serve",
"dev": "NODE_ENV=development webpack-dev-server --hot --port 5000",
"pack": "pkg bin/lcov-server.js -c package.json -o packed/lcov-server",
"generate-docs": "tryitout && jsdoc -c jsdoc.json",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook --output-dir ./docs/storybook"
},
"author": "Gabriel J. Csapo <[email protected]>",
"contributors": [
"Gabriel Araújo <[email protected]>"
],
"bin": {
"lcov-server": "./distributed/bin/lcov-server.js"
},
"pkg": {
"scripts": [
"index.js",
"bin/*",
"lib/**/*"
],
"assets": [
"src/**/*",
"dist/**/**",
"node_modules/openbadge/**/**"
],
"targets": [
"node12-macos-x64",
"node12-linux-x64",
"node12-win-x64"
]
},
"license": "Apache-2.0",
"dependencies": {
"argparse": "^1.0.10",
"badgeit": "^0.1.1",
"body-parser": "^1.19.0",
"compression": "^1.7.1",
"d3": "^5.15.1",
"dotenv": "^8.2.0",
"express": "^4.16.2",
"git-url-parse": "^11.1.2",
"html-react-parser": "^0.9.2",
"moment": "^2.20.1",
"monaco-textmate": "^3.0.1",
"normalize.css": "^8.0.1",
"onigasm": "^2.2.4",
"openbadge": "^1.0.4",
"pg": "^7.18.1",
"pg-native": "^3.0.0",
"recharts": "^2.0.0-beta.1",
"serve-static": "^1.13.1",
"update-notifier": "^3.0.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@storybook/addon-knobs": "^5.3.13",
"@storybook/react": "^5.3.13",
"@svgr/webpack": "^5.2.0",
"babel-loader": "^8.0.6",
"babel-minify-webpack-plugin": "^0.3.1",
"css-loader": "^2.1.1",
"docdash": "^1.2.0",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.18.3",
"jsdoc": "^3.5.4",
"pkg": "^4.4.3",
"prop-types": "^15.6.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"react-select": "^2.4.3",
"shelljs": "^0.8.0",
"style-loader": "^0.23.1",
"tap": "^13.1.9",
"tape": "^4.13.0",
"tryitout": "^2.0.6",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"whatwg-fetch": "^3.0.0"
}
}