-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
107 lines (107 loc) · 2.88 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "xmldsigjs",
"version": "2.6.1",
"description": "XMLDSIGjs provides an implementation of XMLDSIG in Typescript/Javascript based on WebCrypto ",
"main": "build/index.js",
"module": "build/index.es.js",
"unpkg": "build/xmldsig.js",
"unpkgMin": "build/xmldsig.min.js",
"types": "build/types/index.d.ts",
"scripts": {
"prepare": "npm run build",
"test": "npm run lint && mocha",
"clear": "rimraf build/*",
"build": "npm run build:module && npm run build:types",
"build:module": "rollup -c",
"build:types": "tsc -p tsconfig.types.json",
"rebuild": "npm run clear && npm run build",
"lint": "tslint -p .",
"lint:fix": "tslint --fix -p .",
"prepub": "npm run lint && npm run build",
"postpub": "git push && git push --tags origin master",
"pub": "npm version patch && npm publish",
"prepub:next": "npm run lint && npm run build",
"pub:next": "npm version prerelease --preid=next && npm publish --tag next",
"postpub:next": "git push",
"sync": "git ac && git pull --rebase && git push",
"coverage": "nyc npm test",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PeculiarVentures/xmldsigjs.git"
},
"keywords": [
"xml",
"xmldsig",
"webcrypto",
"signature",
"rsa",
"ec"
],
"author": "Peculiar Ventures, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/PeculiarVentures/xmldsigjs/issues"
},
"homepage": "https://github.com/PeculiarVentures/xmldsigjs#readme",
"dependencies": {
"asn1js": "^3.0.5",
"pkijs": "^3.0.10",
"pvtsutils": "^1.3.2",
"pvutils": "^1.1.3",
"tslib": "^2.4.1",
"xml-core": "^1.1.5",
"xpath": "^0.0.32"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@peculiar/webcrypto": "^1.4.1",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/asn1js": "^3.0.7",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@xmldom/xmldom": "^0.8.6",
"coveralls": "^3.1.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"rollup": "^3.9.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.9.4"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text-summary",
"lcov"
]
},
"mocha": {
"require": "ts-node/register",
"extension": [
"ts"
],
"file": "test/config.ts",
"spec": [
"test/**/*.ts"
]
}
}