-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 961 Bytes
/
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
{
"name": "@lapo/extractcms",
"version": "1.0.3",
"description": "Extract CMS/PKCS#7 signed envelopes (does not verify signature).",
"main": "cms.js",
"repository": {
"type": "git",
"url": "git+https://github.com/lapo-luchini/extractCMS.git"
},
"keywords": [ "cms", "pkcs7", "der", "pem" ],
"author": "Lapo Luchini <[email protected]>",
"license": "ISC",
"bugs": { "url": "https://github.com/lapo-luchini/extractCMS/issues" },
"homepage": "https://github.com/lapo-luchini/extractCMS/",
"dependencies": {
"@lapo/asn1js": "^1.0.0"
},
"files": [ "cms.js" ],
"scripts" : {
"lint" : "npx eslint cms.js test.js",
"test" : "node test"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"extends": [ "eslint:recommended" ],
"rules": {
"indent": [ "error", 4, { "outerIIFEBody": 0 } ],
"linebreak-style": [ "error", "unix" ],
"semi": [ "warn", "always" ]
}
}
}