-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.24 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
{
"name": "@jprochazk/cbor",
"version": "0.5.0",
"description": "Partial implementation of RFC 7049 (CBOR)",
"author": "Jan Procházka",
"license": "MIT",
"homepage": "https://github.com/jprochazk/cbor",
"repository": {
"type": "git",
"url": "git+https://github.com/jprochazk/cbor.git"
},
"bugs": {
"url": "https://github.com/jprochazk/cbor/issues"
},
"keywords": [
"cbor",
"sax"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "rollup -c",
"prepublish": "npm run build && npm run test"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.9.0",
"jest": "^26.4.2",
"rollup": "^2.28.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.2",
"ts-jest": "^26.4.0",
"tslib": "^2.0.1",
"typescript": "^4.0.3"
}
}