forked from opsee/myst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.33 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
{
"name": "opsee-myst",
"version": "0.0.0",
"description": "A proxy for customer tracking, to get around adblockers.",
"main": "start-server.js",
"scripts": {
"start": "node start-server.js",
"dev": "NODE_ENV=development nodemon start-server.js",
"lint": "./node_modules/eslint/bin/eslint.js --max-warnings 0 *.js",
"mocha": "NODE_ENV=test mocha test",
"test": "npm run mocha && npm run lint",
"docker-build": "docker build -t quay.io/opsee/myst:latest .",
"docker-push": "docker push quay.io/opsee/myst:latest",
"docker-publish": "npm run docker-build && npm run docker-push",
"docker-run": "docker run -p 9098:9098 quay.io/opsee/myst"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opsee/myst.git"
},
"author": "Opsee",
"license": "ISC",
"bugs": {
"url": "https://github.com/opsee/myst/issues"
},
"homepage": "https://github.com/opsee/myst#readme",
"devDependencies": {
"chai": "^3.4.1",
"eslint": "^1.10.3",
"mocha": "^2.3.4",
"sinon": "^1.17.2",
"supertest": "^1.1.0"
},
"dependencies": {
"bluebird": "^3.1.1",
"chai": "^3.4.1",
"config": "^1.19.0",
"intercom-client": "^2.6.0",
"lodash": "^4.13.1",
"restify": "^4.0.3",
"universal-analytics": "^0.3.10",
"winston": "^2.1.1",
"yeller_node": "0.0.7"
}
}