-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.59 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": "@anlerandy/timer",
"version": "1.0.12",
"description": "Timeout manager for sensible process.",
"main": "index.js",
"scripts": {
"test": "clear && ISPROD=true node ./node_modules/tap/bin/run.js -j2 --coverage-report=html -T ./unit_tests/index.js",
"buildtest": "npm run build && clear && ISPROD=false node ./node_modules/tap/bin/run.js -T --coverage-report=html ./unit_tests/index.js",
"memtest": "clear && ISPROD=true node --max_old_space_size=6 ./unit_tests/tests/memory.js",
"buildmemtest": "npm run build && clear && ISPROD=false node --max_old_space_size=6 ./unit_tests/tests/memory.js",
"build": "node ./node_modules/@babel/cli/bin/babel.js time_class -d lib",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anlerandy/timerClass.git"
},
"keywords": [
"timeout",
"setTimeout",
"setInterval",
"timer",
"schedule"
],
"author": "Andy L.",
"license": "ISC",
"bugs": {
"url": "https://github.com/anlerandy/timerClass/issues"
},
"homepage": "https://github.com/anlerandy/timerClass#readme",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"babel-loader": "^8.1.0",
"babel-preset-stage-0": "^6.24.1",
"tap": "^14.10.8",
"webpack": "^5.3.0",
"webpack-cli": "^4.1.0"
},
"tap": {
"nyc-arg": [
"--exclude=**/unit_tests"
]
},
"files": [
"index.js",
"lib",
"CHANGELOG.md"
]
}