-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.01 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
{
"name": "@festicket/analytics",
"version": "1.0.1",
"description": "",
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"test": "jest",
"start": "webpack-dev-server",
"build": "babel src --out-dir dist --ignore index.test.js",
"lint": "eslint ./src/**/* --ext .js --ext .jsx --fix",
"flow": "flow",
"precypress": "npm run start & wait-on http://localhost:8080",
"cypress": "cypress open",
"pretest:cypress": "npm run start & wait-on http://localhost:8080",
"test:cypress": "cypress run",
"commitmsg": "commitlint -e $GIT_PARAMS",
"precommit": "npm run flow && lint-staged",
"deploy": "./scripts/deploy.sh"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"jest --bail --findRelatedTests",
"git add"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/config-angular": "^6.1.0",
"@festicket/eslint-config": "^1.1.5",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.4.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"commitlint": "^6.1.0",
"cypress": "^2.0.2",
"eslint": "^4.18.0",
"eslint-plugin-cypress": "^2.0.1",
"eslint-plugin-jest": "^21.12.2",
"flow-bin": "^0.66.0",
"husky": "^0.14.3",
"jest": "^22.4.0",
"lint-staged": "^7.0.0",
"prettier": "^1.10.2",
"uglifyjs-webpack-plugin": "^1.2.0",
"wait-on": "^2.1.0",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1"
},
"browserslist": [
"last 3 Chrome versions",
"last 3 ChromeAndroid versions",
"Edge >= 14",
"Explorer >= 11",
"last 3 Firefox versions",
"iOS >= 8",
"Safari >= 9"
],
"dependencies": {
"analytics.js": "^2.9.1",
"babel-runtime": "^6.26.0"
},
"publishConfig": {
"access": "public"
}
}