-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.67 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.67 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
{
"name": "@devoinc/app-developer-kit",
"version": "2.1.2",
"description": "Devo Web Browser Applications Development Kit",
"main": "index.js",
"module": "index.esm.js",
"types": "index.d.ts",
"scripts": {
"build": "npm run clean && rollup -c",
"watch": "npm run clean && rollup -c -w",
"clean": "rimraf dist",
"lint": "eslint ./src --ext .js,.ts",
"format": "prettier -w ./src",
"test": "jest --maxWorkers=2",
"test:coverage": "jest --coverage --colors --maxWorkers=2",
"test:watch": "jest test --watch",
"docs": "typedoc src/index.ts"
},
"dependencies": {
"@devoinc/alerts-api-client": "^2.0.3",
"@devoinc/browser-sdk": "^3.1.5"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"@types/jest": "^27.4.1",
"@types/node": "^14",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-prettier": "^4.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"rollup": "^2.70.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^27.1.3",
"tsc-alias": "^1.6.7",
"typedoc": "^0.22.17",
"typescript": "^4.6.3"
},
"overrides": {
"terser": "^5.14.2"
},
"engines": {
"node": ">=16.0.0"
},
"author": "Devo",
"license": "ISC"
}