-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
47 lines (47 loc) · 1.42 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
{
"name": "ga-lite",
"version": "2.1.6",
"description": "Small, cacheable subset of Google Analytics JS client",
"jsdelivr": "dist/ga-lite.min.js",
"main": "dist/ga-lite.min.js",
"module": "dist/ga-lite.esm.js",
"scripts": {
"test:browser": "cypress run",
"test:unit": "jest ./__tests__/src/*.js",
"test": "yarn test:browser && yarn test:unit",
"build": "webpack",
"release": "./do_release.sh",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint ./src/{**/,}*.js ./__tests__/**/*.js",
"lint:prettier": "prettier ./src/{**/,}*.js ./__tests__/**/*.js -c",
"require-script": "uglifyjs src/require-ga-lite.js --mangle --beautify beautify=false,max_line_len=85"
},
"keywords": [
"google",
"analytics",
"analytics.js",
"ga.js",
"pagespeed"
],
"author": "Jesse Luoto",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"babel-jest": "^29.0.0",
"babel-loader": "^9.0.0",
"cypress": "^12.0.1",
"eslint": "^7.9.0",
"eslint-config-prettier": "^8.0.0",
"eslint-config-standard": "^16.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.0.1",
"prettier": "^2.1.2",
"uglify-js": "^3.10.4",
"webpack": "^5.28.0",
"webpack-cli": "^5.0.0"
}
}