-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.34 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.34 KB
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
{
"name": "@retentioneering/front-utils",
"version": "3.0.0",
"description": "front-end that use the rete ecosystem",
"main": "./dist/rete-front-utils.cjs.js",
"jsnext:main": "./dist/index.js",
"module": "./dist/index.js",
"umd:main": "./dist/rete-front-utils.umd.js",
"browser": "./dist/index.js",
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"exports": {
"import": "./dist/index.js",
"require": "./dist/rete-front-utils.cjs.js"
},
"types": "./dist/index.d.ts",
"scripts": {
"emit-dts": "dts-bundle-generator --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-front-utils"
},
"bugs": {
"url": "https://github.com/retentioneering/retentioneering-front-utils/issues"
},
"homepage": "https://github.com/retentioneering/retentioneering-front-utils#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",
"@retentioneering/datalayer": "2.4.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.0",
"@types/jest": "29.1.2",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"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": "29.1.2",
"jest-environment-jsdom": "29.1.2",
"rollup": "^2.52.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typescript": "^4.2.2"
},
"peerDependencies": {
"@retentioneering/datalayer": "^2.4.0"
}
}