-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "mutar",
"version": "0.1.7",
"description": "Toolkit and constructor to manipulate typed arrays.",
"main": "dist/Mutar.cjs",
"module": "src/Mutar.js",
"type": "module",
"scripts": {
"build": "rollup -c",
"build:cjs": "rollup src/Mutar.js --file dist/Mutar.cjs --format cjs -m",
"lint": "eslint ./src/* ./test/*",
"test": "remembrance && node test/test.mjs",
"test:dev": "node test/test.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UmamiAppearance/MutableTypedArrayJS.git"
},
"keywords": [
"Array",
"Binary",
"Bytes",
"Endianness",
"TypedArray"
],
"author": "UmamiAppearance",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/UmamiAppearance/MutableTypedArrayJS/issues"
},
"homepage": "https://github.com/UmamiAppearance/MutableTypedArrayJS#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"eslint": "^8.44.0",
"remembrance": "^0.3.1",
"rollup": "^3.26.1"
}
}