This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.63 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
{
"name": "houndjs",
"version": "0.7.7",
"description": "The MediaHound JavaScript SDK",
"main": "dist/hound.js",
"repository": {
"url": "https://github.com/MediaHound/HoundJS.git",
"type": "git"
},
"author": "MediaHound",
"keywords": [
"MediaHound",
"Media",
"Entertainment",
"Movies",
"Music",
"TV"
],
"homepage": "https://developer.mediahound.com",
"license": "Apache-2.0",
"scripts": {
"dev": "webpack --progress --watch",
"build": "webpack -p --progress",
"test": "jest -i --coverage"
},
"dependencies": {
"base-64": "^0.1.0",
"form-data": "^2.1.2"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.2.8",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-1": "^6.22.0",
"dotenv": "^4.0.0",
"eslint": "^3.10.2",
"eslint-config-mediahound-library": "^1.0.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"isomorphic-fetch": "^2.2.1",
"jest-bamboo-formatter": "^1.0.1",
"jest-cli": "^19.0.2",
"webpack": "^2.2.1"
},
"babel": {
"presets": [
[
"es2015",
{
"modules": false
}
],
"stage-1"
],
"env": {
"test": {
"plugins": [
"transform-es2015-modules-commonjs"
]
}
}
},
"eslintConfig": {
"extends": "mediahound-library"
},
"jest": {
"testEnvironment": "node",
"testResultsProcessor": "jest-bamboo-formatter"
}
}