-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.19 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
{
"name": "@bugtamer/async-status",
"version": "1.0.3",
"description": "Asynchronous process status helper.",
"main": "./lib/async-status.js",
"types": "./lib/async-status.d.js",
"scripts": {
"clean": "fse remove ./lib && fse remove ./coverage",
"clean:cmd": "rmdir /s /q lib coverage",
"clean:bash": "rm -rf ./lib ./coverage",
"transpile:diagnostics": "tsc --diagnostics",
"transpile": "tsc && fse copy ./lib/transpilation/async-status.spec.js ./lib/async-status.spec.js",
"minify": "npm run transpile && uglifyjs ./lib/transpilation/async-status.js --output ./lib/async-status.js --config-file ./uglify-js.json",
"test": "npm run minify && jasmine --config=./jasmine.json",
"coverage": "nyc npm run test",
"build": "npm run coverage",
"update-release-versions": "npm install --package-lock-only",
"release:testing": "npm audit && npm run update-release-versions && npm run build && npm publish --dry-run",
"release": "npm run release:testing && npm login && npm publish && npm logout"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bugtamer/async-status-js.git"
},
"keywords": [
"asynchronous",
"async",
"await",
"process",
"progress",
"status",
"stats",
"state",
"manager",
"handler",
"helper",
"loading",
"event",
"XHR",
"XmlHttpRequest",
"Ajax",
"Fetch",
"Promise",
"RxJS",
"Observable",
"transaction",
"timing",
"time",
"flag",
"remote",
"call",
"http",
"request",
"response",
"spinner",
"idle",
"ongoing",
"duration",
"lasting",
"timeout",
"delay",
"lag"
],
"author": "Bugtamer",
"license": "MIT",
"bugs": {
"url": "https://github.com/bugtamer/async-status-js/issues"
},
"homepage": "https://github.com/bugtamer/async-status-js#readme",
"devDependencies": {
"@atao60/fse-cli": "^0.1.7",
"@types/jasmine": "^4.3.0",
"@types/node": "^18.11.9",
"jasmine": "^4.5.0",
"nyc": "^15.1.0",
"typescript": "^4.8.4",
"uglify-js": "^3.17.4"
},
"engineStrict": false,
"engines": {
"node": "^14.17.4",
"npm": "^6.14.14",
"npx": "^6.14.14"
}
}