-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.32 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
{
"name": "ponyo",
"version": "0.0.1",
"description": "Ponyo is the video player of choise for expressen.se",
"main": "app.js",
"homepage": "https://github.com/ExpressenAB/ponyo",
"repository": {
"type": "git",
"url": "git@github.com:ExpressenAB/ponyo.git"
},
"scripts": {
"ci": "npm install && npm prune && npm ls && npm test",
"deploy-production": "ohoy deploy production",
"dev": "npm run build && npm run watch",
"test": "mocha && eslint . --cache",
"test-components": "mocha -b app/**/*.spec.js && eslint . --cache",
"test-cov": "./node_modules/.bin/istanbul cover --report lcov ./node_modules/.bin/_mocha",
"build": "rollup -c app/rollup.config.js",
"watch": "rollup -c app/rollup.config.js -w"
},
"author": "Expressen AB",
"license": "proprietary",
"private": true,
"dependencies": {
"async": "^2.1.2",
"bugsnag": "^1.9.0",
"cookie-parser": "^1.4.3",
"exp-asynccache": "^1.2.1",
"exp-cachebuster": "^2.1.1",
"exp-config": "^2.0.0",
"exp-fetch": "^1.2.2",
"express": "^4.13.4",
"express-handlebars": "^3.0.0",
"hls.js": "^0.7.11",
"log": "^1.4.0",
"morgan": "^1.7.0",
"redux": "^3.7.2"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^3.5.0",
"cheerio": "^1.0.0-rc.2",
"eslint": "^4.6.0",
"exp-deploy": "^1.3.0",
"ignore-styles": "^5.0.1",
"istanbul": "^0.4.3",
"jsdom": "^11.2.0",
"mocha": "^3.1.2",
"mocha-cakes-2": "^2.0.1",
"nock": "^9.0.14",
"nodemon": "^1.11.0",
"rollup": "^0.47.6",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.1.0",
"rollup-plugin-css-porter": "^0.1.2",
"rollup-plugin-filesize": "^1.4.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-stylus-compiler": "^0.2.1",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.3.1",
"supertest": "^2.0.1"
},
"files": [
"config",
"lib",
"test",
"app.js",
".eslintrc",
".eslintignore",
".nvmrc"
]
}