-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.49 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.49 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
{
"name": "google-analytics",
"version": "0.1.0",
"private": true,
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon --harmony index.js",
"start": "cross-env NODE_ENV=production pm2 start index.js --node-args='--harmony' --name 'google-analytics'",
"stop": "cross-env NODE_ENV=production pm2 stop index.js --name 'google-analytics'",
"restart": "cross-env NODE_ENV=production pm2 restart index.js --node-args='--harmony' --name 'google-analytics'"
},
"dependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-3": "^6.22.0",
"babel-register": "^6.24.0",
"body-parser": "^1.18.1",
"cross-env": "^5.0.1",
"debug": "~2.6.3",
"express": "~4.15.2",
"googleapis": "^27.0.0",
"path": "^0.12.7",
"redis": "^2.8.0",
"supervisor": "^0.12.0"
},
"devDependencies": {
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0"
},
"description": "",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/zangse/google-analytics-node.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/zangse/google-analytics-node/issues"
},
"homepage": "https://github.com/zangse/google-analytics-node#readme"
}