-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.3 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
53
54
55
56
57
58
59
60
61
62
{
"name": "@humanwhocodes/memory",
"version": "0.2.0",
"description": "A library for working with ArrayBuffer as raw memory.",
"main": "dist/memory.cjs.js",
"module": "dist/memory.js",
"types": "dist/memory.d.ts",
"exports": {
".": {
"require": "./dist/memory.cjs.js",
"import": "./dist/memory.js"
}
},
"files": [
"dist",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
},
"scripts": {
"build": "rollup -c && tsc",
"prepare": "npm run build",
"lint": "eslint src/ tests/",
"test": "npm run lint && mocha -r esm tests/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/humanwhocodes/memory.git"
},
"keywords": [
"javascript",
"memory",
"free list",
"heap memory"
],
"author": "Nicholas C. Zaks",
"license": "Apache-2.0",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"esm": "^3.2.25",
"lint-staged": "^10.4.0",
"mocha": "^8.1.3",
"rollup": "^1.20.3",
"rollup-plugin-babel-minify": "^9.0.0",
"typescript": "^4.0.3",
"yorkie": "^2.0.0"
}
}