forked from suhank/zea-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.18 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
{
"name": "@zeainc/zea-engine",
"fileName": "index",
"libraryName": "ZeaEngine",
"version": "4.5.0",
"description": "Zea Engine",
"main": "dist/index.cjs.js",
"browser": "dist/index.esm.js",
"umd": "dist/index.umd.js",
"umd.min": "dist/index.umd.min.js",
"author": "Zea Inc.",
"types": "dist/zea-engine.d.ts",
"files": [
"dist/zea-engine.d.ts",
"dist/index.cjs.*",
"dist/index.esm.*",
"dist/index.umd.*"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "rollup -c --environment BUILD:production",
"build:dev": "rollup -c",
"build:watch": "rollup -w -c",
"clean:all": "rm -Rf dist/ node_modules/ buildcache yarn.lock",
"clean:build": "rm -Rf dist/ buildcache",
"docs": "cp CHANGELOG.md docs_src/docs/Manual/ && yarn --cwd ./docs_src/ changelog && yarn --cwd ./docs_src/ run _docs",
"prepare": "yarn run build",
"generate": "plop",
"release": "standard-version",
"start": "http-server --cors --port 8000 --silent",
"start:watch": "es-dev-server --cors --app-index testing-e2e/index.html --open --watch",
"dev": "npm-run-all --parallel build:watch start:watch",
"test": "jest",
"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:only": "percy exec -- cypress run --browser chrome --headless --spec cypress/integration/shader-facenormals-spec.js",
"test:e2e:watch": "percy exec -- cypress open",
"lint": "tsdx lint",
"size": "size-limit",
"analyze": "size-limit --why"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"dependencies": {
"lodash-es": "^4.17.21"
},
"size-limit": [
{
"path": "dist/zea-engine.cjs.production.min.js",
"limit": "2100 KB"
},
{
"path": "dist/zea-engine.esm.js",
"limit": "2100 KB"
}
],
"devDependencies": {
"@percy/cli": "^1.1.0",
"@percy/cypress": "^3.1.1",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-typescript": "^8.3.1",
"@size-limit/preset-small-lib": "^5.0.3",
"@types/debug": "^4.1.7",
"@types/jest": "^26.0.23",
"@types/semver": "^7.3.8",
"@zeainc/jsdocs2md": "^0.0.8",
"@zeainc/zea-tree-view": "^0.1.5",
"@zeainc/zea-ux": "^4.0.3",
"babel-jest": "^27.0.5",
"caniuse-lite": "^1.0.30001312",
"copyfiles": "latest",
"cypress": "^9.5.4",
"es-dev-server": "^2.1.0",
"http-server": "^13.0.1",
"husky": "^7.0.4",
"jest": "^27.0.6",
"jest-coverage-badges": "^1.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.0",
"rollup": "^2.60.1",
"rollup-plugin-base64": "^1.0.1",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-glslify": "^1.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "0.31.1",
"rollup-plugin-web-worker-loader": "^1.6.1",
"size-limit": "^5.0.3",
"standard-version": "^9.3.2",
"ts-jest": "^27.0.3",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.5.2"
}
}