This repository has been archived by the owner on Feb 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "wsse",
"description": "WSSE Username Token generator for Node.js",
"version": "6.0.0",
"author": {
"name": "bouzuya",
"email": "m@bouzuya.net",
"url": "https://bouzuya.net"
},
"bugs": {
"url": "https://github.com/bouzuya/node-wsse/issues"
},
"devDependencies": {
"@istanbuljs/esm-loader-hook": "^0.2.0",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"beater": "^9.0.1",
"beater-helpers": "^2.0.0",
"chokidar-cli": "^3.0.0",
"coveralls": "^3.0.11",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.0.4",
"rimraf": "^4.1.2",
"tap-dot-b": "^1.0.1",
"typescript": "^4.9.5"
},
"exports": "./lib/src/index.js",
"files": [
"lib/src"
],
"homepage": "https://github.com/bouzuya/node-wsse",
"keywords": [
"wsse"
],
"license": "MIT",
"nyc": {
"reporter": [
"lcov",
"html",
"text",
"text-summary"
],
"exclude": [
"**/test/**"
]
},
"repository": {
"type": "git",
"url": "git://github.com/bouzuya/node-wsse.git"
},
"scripts": {
"build": "run-s build:format build:lint build:es2015",
"build:es2015": "tsc",
"build:format": "prettier --check \"{src,test}/**/*.ts\"",
"build:lint": "eslint \"{src,test}/**/*.ts\"",
"clean": "rimraf .nyc_output .tmp coverage lib",
"coveralls": "nyc report --reporter text-lcov | coveralls",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"prepare": "npm-run-all -s 'clean' 'build'",
"test": "nyc node --loader @istanbuljs/esm-loader-hook lib/test/index.js | tap-dot-b && nyc report",
"watch": "npm-run-all -p 'watch:*'",
"watch:es2015": "npm run build:es2015 -- --watch",
"watch:test": "chokidar --command 'npm run test' 'lib/**/*.js'"
},
"type": "module",
"types": "./lib/src/index.d.ts"
}