-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
102 lines (102 loc) · 3.02 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
{
"name": "lcov-server",
"version": "1.4.0",
"description": "🎯 A simple lcov server & cli parser",
"main": "index.js",
"homepage": "https://github.com/gabrielcsapo/lcov-server#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/gabrielcsapo/lcov-server.git"
},
"engines": {
"node": ">= 14"
},
"bugs": {
"url": "https://github.com/gabrielcsapo/lcov-server/issues"
},
"scripts": {
"lint": "eslint .",
"test": "tape test/lib/**/*.js test/index.js",
"coverage": "tap test/lib/**.js --coverage --coverage-report=lcov",
"prepublish": "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",
"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]>",
"bin": {
"lcov-server": "./distributed/bin/lcov-server.js"
},
"pkg": {
"scripts": [
"index.js",
"bin/*",
"lib/**/*"
],
"assets": [
"src/**/*",
"dist/**/**",
"node_modules/openbadge/**/**"
],
"targets": [
"node14-macos-x64",
"node14-linux-x64",
"node14-win-x64"
]
},
"license": "Apache-2.0",
"dependencies": {
"babel-polyfill": "^6.26.0",
"badgeit": "^0.1.1",
"body-parser": "^1.19.0",
"compression": "^1.7.1",
"express": "^4.16.2",
"git-url-parse": "^11.1.2",
"moment": "^2.20.1",
"openbadge": "^1.0.4",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"sequelize": "^6.6.2",
"serve-static": "^1.13.1",
"update-notifier": "^3.0.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-knobs": "^5.0.11",
"@storybook/react": "^5.0.11",
"babel-loader": "^8.0.6",
"babel-minify-webpack-plugin": "^0.3.1",
"css-loader": "^2.1.1",
"docdash": "^1.1.0",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.5.1",
"highlight.js": "^9.12.0",
"jsdoc": "^3.5.4",
"pkg": "^4.2.6",
"prop-types": "^15.6.0",
"psychic.css": "0.0.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^5.0.0",
"react-select": "^2.4.3",
"shelljs": "^0.8.0",
"style-loader": "^0.23.1",
"tap": "^13.1.9",
"tape": "^4.8.0",
"tryitout": "^2.0.6",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1",
"whatwg-fetch": "^3.0.0"
}
}