-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.9 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
49
50
51
52
53
54
55
56
{
"name": "killrvideo-generator",
"version": "3.0.0",
"description": "Sample Data generator for KillrVideo",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"start:dev": "cross-env NODE_ENV=development node --debug -r dotenv/config dist/index.js",
"debug": "node --debug dist/index.js",
"clean": "rimraf dist",
"build": "npm-run-all --parallel \"build:*\"",
"build:js": "babel src --out-dir dist --source-maps",
"build:protos": "cpx \"lib/killrvideo-service-protos/src/**\" dist/protos --verbose",
"build:googleprotos": "node scripts/copy-google-protos.js dist/protos",
"watch": "npm-run-all clean --parallel \"build:* -- --watch\"",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KillrVideo/killrvideo-generator.git"
},
"author": "Luke Tillman <[email protected]> (http://www.luketillman.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/KillrVideo/killrvideo-generator/issues"
},
"homepage": "https://github.com/KillrVideo/killrvideo-generator#readme",
"private": true,
"dependencies": {
"bluebird": "^3.5.1",
"config": "^1.30.0",
"dse-driver": "^1.6.0",
"faker": "^3.1.0",
"googleapis": "^12.4.0",
"grpc": "^1.0.0",
"js-yaml": "^3.11.0",
"later": "^1.2.0",
"regenerator-runtime": "^0.9.6",
"simple-get": "^2.7.0",
"uuid": "^2.0.3",
"winston": "^2.4.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-async-to-module-method": "^6.24.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"cpx": "^1.5.0",
"cross-env": "^1.0.8",
"dotenv": "^2.0.0",
"grpc-tools": "^1.6.6",
"npm-run-all": "^2.3.0",
"rimraf": "^2.6.2"
}
}