forked from yifan-fun/bit-array
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.07 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
{
"name": "bit-array-buffer",
"version": "1.0.2",
"description": "Analog bit array for JS",
"main": "dist/BitArray.js",
"types": "./dist/BitArray.d.ts",
"scripts": {
"test": "jest --verbose",
"build": "tsc -p tsconfig.json"
},
"jest": {
"rootDir": "tests",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"json",
"js"
]
},
"keywords": [
"js-bit",
"bit-array",
"arraybuffer-bit"
],
"author": "geekx",
"license": "ISC",
"dependencies": {
"debug": "^4.1.1"
},
"devDependencies": {
"@types/debug": "^4.1.4",
"@types/jest": "^24.0.15",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.2"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yifan-fun/bit-array.git"
},
"bugs": {
"url": "https://github.com/yifan-fun/bit-array/issues"
},
"homepage": "https://github.com/yifan-fun/bit-array#readme"
}