-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.17 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
{
"name": "@voxmedia/concert-vast",
"version": "1.3.2",
"description": "Simple Vast Parsing for Concert Video Ads",
"main": "dist/concert-vast.js",
"author": "Vox Media",
"license": "Apache-2.0",
"private": false,
"scripts": {
"test": "jest",
"cypress": "cypress run",
"cypress-open": "cypress open",
"build": "export NODE_OPTIONS=--openssl-legacy-provider && webpack && pretty-quick dist/",
"dev": "webpack-dev-server"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/runtime-corejs2": "^7.3.1",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^4.6.0",
"cypress": "^3.1.5",
"eslint": "^5.13.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"jest": "^24.1.0",
"jest-junit": "^6.2.1",
"prettier": "1.16.4",
"pretty-quick": "^1.10.0",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.0",
"xhr-mock": "^2.4.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}