-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
47 lines (47 loc) · 1.29 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
{
"name": "lru-native2",
"version": "1.2.5",
"description": "LRU cache module written in C++",
"keywords": [
"LRU",
"cache",
"native",
"c++"
],
"main": "index.js",
"types": "index.d.ts",
"maintainers": [
{
"name": "Kibae Shin",
"email": "nonunnet@gmail.com",
"url": "https://github.com/kibae"
}
],
"author": {
"name": "Kibae Shin",
"email": "nonunnet@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/kibae/node-lru-native.git"
},
"license": "MIT",
"dependencies": {
"nan": "^2.14.2"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.2.1",
"tslint-lt": "^1.8.0",
"typescript": "^3.4.5"
},
"scripts": {
"test": "npm run build && node --expose-gc --trace-gc node_modules/mocha/bin/_mocha -R spec",
"valgrind": "npm run build && valgrind --leak-check=full --show-possibly-lost=no node --expose-gc --trace-gc node_modules/mocha/bin/_mocha -R spec",
"build": "node-gyp rebuild",
"install": "npm run build",
"lint": "npm run prettier && tslint --format stylish --project .",
"prettier": "prettier --config node_modules/tslint-lt/.prettierrc.yml --write \"{,!node_modules/}**/*.{ts,tsx,css,scss,html,js,jsx,yml,json}\"",
"docker": "docker build ."
}
}