-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
53 lines (53 loc) · 1.95 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
{
"name": "@lastolivegames/becsy",
"type": "module",
"version": "0.15.10",
"scripts": {
"test": "jest --config jestconfig.json --detectOpenHandles",
"test:watch": "jest --watch --config jestconfig.json --detectOpenHandles",
"perf": "rollup --config rollup.benchmarks.config.mjs && cp index.* perf.* lib && tsc && env NODE_ENV=test node --expose-gc --enable-source-maps --no-warnings --es-module-specifier-resolution=node lib/benchmarks/index.js",
"deopt": "rm *.log && node --trace-ic --enable-source-maps --es-module-specifier-resolution=node lib/tests/performance.test.js && mv *.log v8.pre.log && node striplog.cjs && deoptigate",
"flame": "clinic flame -- node --enable-source-maps --es-module-specifier-resolution=node lib/tests/performance.test.js",
"build": "rollup --config",
"prepublishOnly": "yarn build",
"release": "node build/release.js",
"lint": "eslint src tests benchmarks",
"update": "yarn upgrade-interactive --latest",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"files": [
"index.*",
"perf.*",
"src"
],
"main": "index.umd.js",
"module": "index.js",
"engines": {
"node": ">=12"
},
"repository": "git@github.com:lastolivegames/becsy.git",
"author": "Piotr Kaminski <piotr@lastolive.games>",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.8",
"@types/ms": "^0.7.34",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"chalk": "^5.3.0",
"eslint": "^8.53.0",
"eslint-plugin-disable": "^2.0.1",
"eslint-plugin-import": "^2.29.0",
"jest": "^29.7.0",
"markdown-it-container": "^3.0.0",
"rollup": "^4.3.1",
"rollup-plugin-ts": "^3.4.5",
"ts-jest": "^29.1.1",
"tsc-watch": "^6.0.4",
"typescript": "^5.2.2",
"vitepress": "1.x"
}
}