-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.16 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.16 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
{
"name": "flagger",
"version": "1.1.0",
"description": "Flag sender",
"main": "index.js",
"scripts": {
"start": "node lib/index.js",
"deploy": "npm run build && rsync -ruvt --delete --exclude 'node_modules' --exclude '.git' . [email protected]:app",
"build": "npx gulp build",
"watch": "npx gulp watch",
"test": "npx mocha -b --require source-map-support/register tests/index.js",
"profile": "npx mocha -b --prof --require source-map-support/register tests/index.js"
},
"author": "stubbornick",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.10",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"deep-defaults": "^1.0.5",
"del": "^5.1.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-cached": "^1.1.1",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.1",
"gulp-sourcemaps": "^2.6.5",
"gulp-util": "^3.0.8",
"mocha": "^8.2.1",
"source-map-support": "^0.5.19"
},
"dependencies": {
"dateformat": "^3.0.3",
"mongodb": "^3.6.3",
"socket.io": "^2.4.1",
"socket.io-client": "^2.4.0"
}
}