-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.3 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
{
"name": "@retentioneering/datalayer",
"version": "2.4.0",
"description": "datalayer for retentioneering analytics framework",
"main": "./dist/rete-datalayer.cjs.js",
"jsnext:main": "./dist/index.js",
"module": "./dist/index.js",
"umd:main": "./dist/rete-datalayer.umd.js",
"browser": "./dist/index.js",
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"exports": {
"import": "./dist/index.js",
"require": "./dist/rete-datalayer.cjs.js"
},
"types": "./dist/index.d.ts",
"scripts": {
"emit-dts": "dts-bundle-generator --inline-declare-global --project tsconfig.declarations.json --out-file ./dist/index.d.ts ./src/index.ts",
"test": "jest",
"clear-jest": "jest --clearCache",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"lint": "eslint \"./**/*.{js,ts,tsx}\"",
"lint:fix": "eslint \"./**/*.{js,ts,tsx}\" --fix",
"build": "npm run emit-dts && rollup -c rollup.config.js"
},
"author": "retentioneering",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "git+https://github.com/retentioneering/retentioneering-datalayer"
},
"bugs": {
"url": "https://github.com/retentioneering/retentioneering-datalayer/issues"
},
"homepage": "https://github.com/retentioneering/retentioneering-datalayer#readme",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.3.4",
"@testing-library/dom": "^8.11.1",
"@testing-library/jest-dom": "^5.15.1",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"babel-jest": "^27.4.2",
"babel-plugin-module-resolver": "^4.1.0",
"core-js": "^3.23.4",
"dts-bundle-generator": "^6.1.0",
"eslint": "^7.21.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^27.4.2",
"rollup": "^2.52.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.5.3",
"wait-for-expect": "^3.0.2"
}
}