-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.04 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
{
"name": "artnet2atem",
"version": "1.5.0",
"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/willosof/artnet2atem.git"
},
"keywords": [
"artnet",
"atem",
"electron"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/willosof/artnet2atem/issues"
},
"homepage": "https://github.com/willosof/artnet2atem",
"devDependencies": {
"babel-core": "^5.6.14",
"babel-jest": "^5.3.0",
"del": "^1.2.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^2.3.1",
"gulp-clean": "^0.3.1",
"gulp-istanbul": "^0.10.0",
"gulp-load-plugins": "^1.0.0-rc.1",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.0.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.0.1",
"gulp-sourcemaps": "^1.5.2",
"gulp-util": "^3.0.5",
"jest-cli": "^0.4.15",
"karma": "^0.12.37",
"karma-coverage": "^0.4.2",
"karma-jasmine": "^0.3.6",
"karma-mocha-reporter": "^1.0.2",
"karma-phantomjs-launcher": "^0.2.0",
"lodash": "^3.9.3",
"phantomjs": "^1.9.17",
"wiredep": "^2.2.2"
},
"dependencies": {
"applest-atem": "^0.1.4",
"artnet-node": "git://github.com/haakonnessjoen/artnet-node#Discovery",
"config": "^1.17.1",
"debug": "^2.2.0",
"fs": "0.0.2",
"jquery": "^2.1.4"
},
"jspm": {
"dependencies": {},
"devDependencies": {
"babel": "npm:babel-core@^5.1.13",
"babel-runtime": "npm:babel-runtime@^5.1.13",
"core-js": "npm:core-js@^0.9.4"
}
},
"jest": {
"collectCoverage": true,
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testPathIgnorePatterns": [
"__tests__/app/",
"/node_modules/"
]
}
}