-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.62 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
{
"name": "goodcore",
"version": "1.2.0",
"description": "Some core functions and helper classes. List, Dictionary, Stack, Vec2, Rect, Range2, Tree. Optimized for speed and memory efficiency. Also an object pool a few mixins and Helpers for Dom, Array and Object manipulation + general",
"main": "index.js",
"typings": "goodcore.d.ts",
"unpkg": "goodcore.bundle.js",
"files": [
"*"
],
"type": "module",
"scripts": {
"install_tools": "npm install && typings install",
"clean": "rimraf ./dist",
"dev": "npm run clean && tsc -p tsconfig.app.json",
"build": "npm run clean && tsc -p tsconfig.app.json && rollup -c && gulp copyDTS && gulp copyWebpackExternalsFn",
"build-lite": "rollup -c rollup.lite.js",
"build-all": "npm run build && npm run build-lite",
"bench": "tsc -p tsconfig.bench.json && node ./dist/benchmark/index.js",
"test": "jest",
"coveralls": "jest --coverage && cat ./tests/coverage/lcov.info | coveralls",
"cover": "jest --coverage",
"deploy": "gulp package && npm publish dist\\lib"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.11",
"@babel/plugin-external-helpers": "^7.22.5",
"@babel/plugin-transform-member-expression-literals": "^7.22.5",
"@babel/plugin-transform-property-literals": "^7.22.5",
"@babel/plugin-transform-property-mutators": "^7.22.5",
"@babel/plugin-transform-reserved-words": "^7.22.5",
"@babel/preset-env": "^7.22.14",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "28.0.1",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.1",
"@types/benchmark": "^2.1.2",
"@types/jest": "^29.5.4",
"@types/jsdom": "^21.1.2",
"@types/node": "22.10.1",
"base64-js": "1.5.1",
"benchmark": "2.1.4",
"chalk": "5.3.0",
"coveralls": "3.1.1",
"eslint": "9.16.0",
"esm": "3.2.25",
"gulp": "5.0.0",
"gulp-rename": "2.0.0",
"ieee754": "1.2.1",
"isarray": "2.0.5",
"jest": "29.7.0",
"jest-ts-webcompat-resolver": "1.0.0",
"jest-environment-jsdom": "29.7.0",
"jsdom": "25.0.1",
"prettier": "3.4.1",
"rimraf": "^6.0.1",
"rollup": "4.28.0",
"ts-jest": "29.2.5",
"tslib": "2.8.1",
"typescript": "5.7.2"
},
"bugs": {
"url": "https://github.com/allnamesrtaken/goodcore/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/allnamesrtaken/goodcore.git"
},
"homepage": "https://github.com/allnamesrtaken/goodcore#readme",
"keywords": [
"Typescript",
"Javascript"
],
"author": "Joel Brage",
"license": "MIT"
}