-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.5 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
{
"name": "js-debugger",
"version": "0.4.0",
"description": "Debug your JS",
"main": "src/server.js",
"scripts": {
"build:dev": "webpack --progress",
"build:prod": "rm -rf dist && webpack --progress --define prod",
"test": "node test/server.js",
"release:patch": "npm version patch -m 'Bump version to %s'",
"release:minor": "VERSION=$(npm version minor -m 'Bump version to %s') && VERSION=$(echo $VERSION | cut -c 2- | rev | cut -c 3- | rev) && git checkout -b release-$VERSION",
"release:major": "VERSION=$(npm version major -m 'Bump version to %s') && VERSION=$(echo $VERSION | cut -c 2- | rev | cut -c 3- | rev) && git checkout -b release-$VERSION"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PertapaCode/js-debugger.git"
},
"keywords": [
"debbug",
"node",
"js"
],
"files": [
"dist"
],
"author": "Bruno Santos <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PertapaCode/js-debugger/issues"
},
"homepage": "https://github.com/PertapaCode/js-debugger#readme",
"dependencies": {
"log4js": "^2.3.3",
"log4js-extend": "^0.2.1",
"morgan": "^1.8.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"express": "^4.15.2",
"js-logger": "^1.4.1",
"uglifyjs-webpack-plugin": "^1.0.1",
"webpack": "^3.8.1"
}
}