-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "@fictivekin/growable-uint8-array",
"version": "1.2.0",
"description": "A wrapper around Uint8Array that simplifies buffer management when appending data (growing the array)",
"jest": {
"moduleDirectories": [
"node_modules",
"src"
],
"setupFilesAfterEnv": [
"<rootDir>/test/setup.js"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"main": "./lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"prepare": "npm run build",
"lint": "eslint --quiet src",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fictivekin/fknpm-growable-uint8-array.git"
},
"keywords": [
"Uint8Array",
"TypedArray",
"ArrayBuffer",
"resize"
],
"author": "Evan Haas <evan@fictivekin.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fictivekin/fknpm-growable-uint8-array/issues"
},
"homepage": "https://github.com/fictivekin/fknpm-growable-uint8-array#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-jest": "^24.9.0",
"eslint": "^6.2.1",
"jest": "^24.9.0"
}
}