-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.33 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.33 KB
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
{
"name": "simpleChat",
"version": "1.0.0",
"description": "Simple chat with nodejs and websockets",
"main": "js/app.js",
"dependencies": {
"faye-websocket": "^0.10.0",
"keymirror": "^0.1.1",
"node-static": "^0.7.7"
},
"devDependencies": {
"babel-jest": "*",
"babel-preset-es2015": "^6.0.15",
"babelify": "^7.2.0",
"browserify": "^6.2.0",
"cli-clear": "^1.0.4",
"jest-cli": "^0.7.1",
"uglify-js": "^2.5.0",
"watchify": "^2.1.1"
},
"scripts": {
"test": "jest",
"node": "node --harmony appNode/appNode.js",
"watch": "watchify -o public/js/bundle.js -v -d public/js/app.js -t [babelify --presets [ es2015 ] ]",
"build": "browserify public/js/app.js -t [babelify --presets [ es2015 ] ] | uglifyjs > public/js/bundle.js",
"start": "npm run build && npm run node"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
]
},
"repository": {
"type": "git",
"url": "https://github.com/ca11ado/simpleChat.git"
},
"keywords": [
"javascript"
],
"author": "Khimtsov Anton",
"license": "ISC",
"bugs": {
"url": "https://github.com/ca11ado/simpleChat/issues"
},
"homepage": "http://95.213.199.142:8080/"
}