forked from croct-tech/plug-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.82 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
{
"name": "@croct/plug",
"version": "0.0.0-dev",
"description": "A fully-featured devkit for building natively personalized applications.",
"license": "MIT",
"author": {
"name": "Croct",
"email": "plug-js+lib@croct.com",
"url": "https://croct.com"
},
"keywords": [
"croct",
"personalization",
"integration",
"javascript",
"typescript"
],
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/croct-tech/plug-js.git"
},
"bugs": {
"url": "https://github.com/croct-tech/plug-js/issues"
},
"homepage": "https://github.com/croct-tech/plug-js",
"scripts": {
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"test": "jest -c jest.config.js --coverage",
"validate": "tsc --noEmit",
"build": "tsc",
"bundle": "rollup -c rollup.config.js"
},
"dependencies": {
"@croct/sdk": "^0.4",
"tslib": "^2.0.3"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-replace": "^2.3.4",
"@rollup/plugin-typescript": "^8.1.0",
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"babel-jest": "^26.6.3",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"temp-dir": "^2.0.0",
"ts-jest": "^26.4.4",
"typescript": "^3.9.7"
},
"browserslist": [
"last 1 version"
],
"files": [
"**/*.js",
"**/*.ts"
]
}