-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
46 lines (46 loc) · 1.37 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
{
"name": "chromecast-device-emulator",
"version": "1.2.7",
"description": "Testing your chromecast receiver app, without a real-device needed.",
"homepage": "https://github.com/ajhsu/chromecast-device-emulator#readme",
"bugs": {
"url": "https://github.com/ajhsu/chromecast-device-emulator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ajhsu/chromecast-device-emulator.git"
},
"license": "MIT",
"author": "AJ Hsu <im.ajhsu@gmail.com>",
"main": "dist/index.js",
"bin": {
"chromecast-device-emulator": "./dist/cli/index.js",
"cde": "./dist/cli/index.js"
},
"scripts": {
"build": "babel src --ignore receiver-utils --out-dir dist",
"build:receiver-utils": "NODE_ENV=production browserify --transform babelify src/receiver-utils/index.js --outfile dist/receiver-utils.min.js",
"pretest": "npm run build",
"test": "mocha \"dist/**/*.spec.js\""
},
"dependencies": {
"ajv": "^4.11.8",
"chalk": "^2.4.1",
"commander": "^2.15.1",
"ws": "^5.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-node-env-inline": "^0.4.3",
"babel-preset-env": "^1.7.0",
"babel-preset-minify": "^0.4.3",
"babelify": "^8.0.0",
"browserify": "^16.2.2",
"chai": "^3.5.0",
"mocha": "^3.5.3"
},
"engines": {
"node": ">= 6.9.0"
}
}