-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.56 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
{
"name": "google-optimize-service",
"version": "1.1.21",
"description": "Highly customizable, dependency-free, universal, service abstraction around Google Optimize.",
"main": "lib/google-optimize-service.cjs.js",
"module": "lib/google-optimize-service.esm.js",
"unpkg": "lib/google-optimize-service.umd.js",
"jsdelivr": "lib/google-optimize-service.umd.js",
"scripts": {
"build": "npm run clean && rollup -c",
"clean": "rimraf ./dist",
"lint": "eslint -c .eslintrc.json \"!(lib)/**/*.js\"",
"lint:ci": "eslint --format junit -o test-results/eslint/results.xml -c .eslintrc.json \"!(lib)/**/*.js\"",
"prepare": "if [ ${NODE_ENV} != 'production' ]; then husky install; fi",
"test": "jest --testPathIgnorePatterns=/package-tests/ --env=jsdom",
"test:ci": "jest --runInBand --no-cache --ci --reporters='default' --testPathIgnorePatterns=/package-tests/ --reporters='jest-junit' --passWithNoTests",
"tdd": "jest --env=jsdom --watch"
},
"jest": {
"testEnvironment": "jsdom",
"clearMocks": true,
"coverageDirectory": "coverage"
},
"jest-junit": {
"outputDirectory": "test-results/jest",
"outputName": "results.xml",
"suitName": "google-optimize-service unit tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haensl/google-optimize-service.git"
},
"keywords": [
"google",
"optimize",
"optimize",
"google",
"service",
"universal",
"abstraction"
],
"author": {
"name": "HP Dietz",
"url": "https://hpdietz.com",
"email": "[email protected]",
"twitter": "@h_p_d"
},
"funding": "https://github.com/sponsors/haensl",
"license": "MIT",
"bugs": {
"url": "https://github.com/haensl/google-optimize-service/issues"
},
"homepage": "https://github.com/haensl/google-optimize-service#readme",
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.13",
"@haensl/eslint-config": "^1.4.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.3",
"babel-jest": "^29.3.1",
"eslint": "^8.5.0",
"husky": "^9.0.11",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-junit": "^16.0.0",
"rimraf": "^5.0.4",
"rollup": "^4.18.0",
"rollup-plugin-ascii": "0.0.3",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4"
},
"dependencies": {
"@babel/runtime": "^7.12.13"
}
}