forked from willosof/artnet2atem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "artnet2atem",
"version": "0.0.3",
"description": "Electron artnet2atem",
"engines": {
"node": "<0.12"
},
"main": "main.js",
"scripts": {
"start": "gulp && electron .",
"postinstall": "bower install && jspm install",
"debug": "node-inspector && electron --debug=5858 && ",
"test": "jest --verbose && karma start",
"test-angularjs": "karma start --auto-watch"
},
"repository": {
"type": "git",
"url": "https://github.com/Trippel-M/artnet2atem.git"
},
"keywords": [
"artnet",
"atem",
"electron"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/Trippel-M/artnet2atem/issues"
},
"homepage": "https://github.com/Trippel-M/artnet2atem",
"devDependencies": {
"babel-core": "*",
"babel-jest": "*",
"babel-preset-env": "*",
"babel-preset-es2015": "*",
"del": "*",
"gulp": "^3.9.0",
"gulp-autoprefixer": "*",
"gulp-clean": "*",
"gulp-istanbul": "*",
"gulp-load-plugins": "*",
"gulp-notify": "*",
"gulp-plumber": "*",
"gulp-rename": "*",
"gulp-sass": "*",
"gulp-sourcemaps": "*",
"gulp-util": "*",
"jest-cli": "*",
"karma": "*",
"karma-coverage": "*",
"karma-jasmine": "*",
"karma-mocha-reporter": "*",
"karma-phantomjs-launcher": "*",
"phantomjs": "*",
"wiredep": "*"
},
"dependencies": {
"applest-atem": "*",
"artnet-node": "git://github.com/haakonnessjoen/artnet-node#Discovery",
"config": "*",
"debug": "*",
"electron": "^1.7.8",
"electron-download": "^4.1.0",
"fs": "*",
"lodash": "^4.17.4",
"jquery": "*"
},
"jspm": {
"dependencies": {},
"devDependencies": {
"babel": "npm:babel-core",
"babel-runtime": "npm:babel-runtime",
"core-js": "npm:core-js"
}
},
"jest": {
"collectCoverage": true,
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testPathIgnorePatterns": [
"__tests__/app/",
"/node_modules/"
]
}
}