-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
107 lines (107 loc) · 3.16 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@zeainc/zea-ux",
"version": "4.7.2",
"description": "Zea UX",
"homepage": "https://github.com/ZeaInc/zea-ux#readme",
"author": "Zea Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ZeaInc/zea-ux.git"
},
"bugs": {
"url": "https://github.com/ZeaInc/zea-ux/issues"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"umd": "dist/index.umd.js",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"types": "./dist/zea-ux.d.ts"
}
},
"types": "dist/zea-ux.d.ts",
"files": [
"dist/"
],
"keywords": [
"Zea",
"UX"
],
"scripts": {
"build:tsc": "npx tsc",
"build:tsc:watch": "npx tsc --watch",
"clean:build": "rm -Rf dist/ buildcache",
"build:rollup": "rollup -c",
"build:rollup:watch": "rollup -w -c",
"build": "npm-run-all clean:build build:rollup",
"dev": "npm-run-all --parallel build:rollup:watch start:watch",
"start": "es-dev-server --app-index testing-e2e/index.html --open",
"start:watch": "es-dev-server --app-index testing-e2e/index.html --open --watch",
"release": "standard-version",
"dist": "yarn publish --access=public",
"docs": "adg --config adg.config.json",
"docs-w": "adg -w --config=adg.config.json",
"docs:serve": "docsify serve docs/",
"lint": "eslint src/",
"prepare": "yarn run build",
"test": "jest",
"generate": "plop",
"test:coverage": "jest --coverage",
"test:debug": "node --inspect ./node_modules/jest/bin/jest.js --runInBand --watch",
"test:watch": "jest --watch",
"test:e2e": "percy exec cypress run --browser chrome --headless",
"test:e2e:watch": "percy exec cypress open",
"to-cleanup": "rm -Rf dist/ node_modules/ yarn.lock",
"to-link-packages": "yarn link @zeainc/zea-engine"
},
"devDependencies": {
"@babel/preset-env": "^7.12.7",
"@percy/cypress": "^2.3.1",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@zeainc/zea-collab": "^6.3.4",
"@zeainc/zea-engine": "4.15.0",
"canvas": "^2.6.1",
"copyfiles": "^2.4.1",
"cypress": "^5.6.0",
"docsify-cli": "^4.4.2",
"documentation": "^13.1.0",
"es-dev-server": "^1.60.1",
"eslint": "^7.14.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.2.0",
"husky": "^4.3.0",
"husky-run": "^0.0.0",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"plop": "^2.7.4",
"prettier": "^2.2.1",
"rollup": "^2.34.1",
"rollup-plugin-dts": "^4.2.3",
"standard-version": "^9.0.0",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typedoc": "^0.23.21",
"typedoc-plugin-markdown": "^3.13.6",
"typescript": "^5.6.3"
},
"dependencies": {
"dom-to-image": "^2.6.0",
"global": "^4.4.0",
"license-checker": "^25.0.1"
},
"husky": {
"hooks": {
"disabled=pre-commit": "npm test",
"disabled=pre-push": "npm test"
}
}
}