forked from image-js/iobuffer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.5 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
{
"name": "iobuffer",
"version": "5.3.2",
"description": "Read and write binary data on ArrayBuffers",
"main": "./lib/IOBuffer.js",
"module": "./lib-esm/IOBuffer.js",
"types": "./lib/IOBuffer.d.ts",
"browser": {
"./lib-esm/text.js": "./lib-esm/text.browser.js",
"./lib/text.js": "./lib/text.browser.js"
},
"files": [
"src",
"lib",
"lib-esm"
],
"scripts": {
"check-types": "tsc --noEmit",
"clean": "rimraf lib lib-esm",
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "npm run tsc",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-only && npm run eslint && npm run prettier && npm run check-types",
"test-only": "jest --coverage",
"tsc": "npm run clean && npm run tsc-cjs && npm run tsc-esm",
"tsc-cjs": "tsc --project tsconfig.cjs.json",
"tsc-esm": "tsc --project tsconfig.esm.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/image-js/iobuffer.git"
},
"author": "Michaël Zasso",
"license": "MIT",
"bugs": {
"url": "https://github.com/image-js/iobuffer/issues"
},
"homepage": "https://github.com/image-js/iobuffer#readme",
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.14.0",
"eslint": "^8.34.0",
"eslint-config-cheminfo-typescript": "^11.2.2",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}