-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 1.93 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
{
"name": "binary-markup",
"version": "0.9.0",
"description": "Binary Markup Language - declarative way to describe binary data",
"keywords": [
"BML",
"binary",
"file",
"buffer",
"parse",
"pack"
],
"author": {
"name": "Sergii Kostyrko",
"email": "[email protected]"
},
"type": "module",
"source": "src/index.ts",
"exports": {
"require": "./dist/binary-markup.cjs",
"default": "./dist/binary-markup.modern.js"
},
"main": "./dist/binary-markup.cjs",
"module": "./dist/binary-markup.module.js",
"unpkg": "./dist/binary-markup.umd.js",
"typings": "dist/types/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/srg-kostyrko/BML.git"
},
"bugs": {
"url": "https://github.com/srg-kostyrko/BML/issues"
},
"homepage": "https://github.com/srg-kostyrko/BML#readme",
"scripts": {
"prebuild": "rimraf dist",
"build": "microbundle",
"dev": "microbundle watch",
"commit": "git add . && git-cz",
"test": "jest",
"test:watch": "jest --watchAll",
"prepare": "husky install",
"lint": "eslint ./src/*.ts ./src/**/*.ts ./__tests__/*.ts ./__tests__/**/*.ts",
"release": "standard-version",
"release:beta": "standard-version -p beta",
"prepublish": "npm run build",
"publish": "clean-publish"
},
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"clean-publish": "^4.0.1",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^28.1.1",
"lint-staged": "^13.0.2",
"microbundle": "^0.15.0",
"prettier": "2.7.1",
"standard-version": "^9.5.0",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.ts": [
"npm run lint"
]
}
}