forked from swiing/Bit-TypedArray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.23 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
{
"name": "@bitarray/typedarray",
"version": "1.0.3",
"description": "A BitArray object exhibiting the interface of standard ecmascript TypedArray's",
"typings": "./dist/esm/bit-typedarray.d.ts",
"exports": {
".": {
"import": "./dist/esm/bit-typedarray.js",
"require": "./dist/cjs/bit-typedarray.js"
}
},
"directories": {
"example": "example",
"test": "test"
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:types && bash ./scripts/build.sh",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:types": "tsc --emitDeclarationOnly -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"test": "node --loader ts-node/esm test/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swiing/Bit-TypedArray.git"
},
"keywords": [
"bitarray",
"typedarray"
],
"author": "swiing",
"license": "MIT",
"bugs": {
"url": "https://github.com/swiing/Bit-TypedArray/issues"
},
"homepage": "https://github.com/swiing/Bit-TypedArray#readme",
"devDependencies": {
"ts-node": "^10.7.0",
"typescript": "^4.2.4"
},
"files": [
"dist"
]
}