-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
46 lines (46 loc) · 1.09 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
{
"name": "deepool",
"version": "3.0.1",
"description": "deePool: highly-efficient pool for objects",
"main": "./src/deePool.js",
"browser": "./src/deePool.js",
"scripts": {
"build": "npm run build-core",
"prepare": "npm run build",
"test": "node --trace-warnings scripts/node-tests.js",
"test:package": "TEST_PACKAGE=true npm test",
"test:umd": "TEST_UMD=true npm test",
"test:esm": "TEST_ESM=true npm test",
"test:all": "npm test && npm run test:package && npm run test:umd && npm run test:esm",
"build-core": "node scripts/build-core.js",
"perfs": "node perfs/node-perfs.js"
},
"devDependencies": {
"benchmark": "~2.1.4",
"moduloze": "~0.9.1",
"qunit": "~2.19.1"
},
"mz-dependencies": {
"deePool.js": "deePool"
},
"exports": {
".": {
"import": "./dist/esm/deePool.mjs",
"default": "./src/deePool.js"
}
},
"keywords": [
"memory",
"garbage collection",
"object",
"optimization",
"performance",
"pool"
],
"repository": {
"type": "git",
"url": "https://github.com/getify/deePool"
},
"author": "Kyle Simpson <[email protected]>",
"license": "MIT"
}