-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
62 lines (62 loc) · 1.77 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": "mmap-io",
"version": "1.1.7",
"license": "MIT",
"author": {
"name": "Oscar Campbell",
"email": "oscar@campbell.nu",
"url": "https://github.com/ozra"
},
"description": "io.js/node.js mmap bindings revisited.",
"homepage": "https://github.com/ozra/mmap-io",
"keywords": [
"low level",
"file",
"memory mapped",
"mmap",
"advise",
"sync",
"shared memory",
"C++",
"performance"
],
"repository": {
"type": "git",
"url": "https://github.com/ozra/mmap-io.git"
},
"bugs": {
"url": "http://github.com/ozra/mmap-io/issues"
},
"main": "mmap-io.js",
"files": [
"binding.gyp",
"LICENSE",
"dist",
"mmap-io.d.ts",
"mmap-io.js",
"package.json",
"package-lock.json",
"README.md",
"src"
],
"scripts": {
"clean": "rm -rf build dist",
"build": "npm run build-addon && npm run build-es && npm run test",
"build-addon": "node-gyp configure && node-gyp rebuild",
"build-es": "./node_modules/typescript/bin/tsc && cp ./dist/mmap-io.d.ts ./",
"prepare": "npm run build",
"install": "npm run build-addon",
"test": "./node_modules/livescript/bin/lsc -o ./dist/ -b -c ./src/test.ls && ((which nodejs && nodejs ./dist/test.js) || node ./dist/test.js)",
"watch": "while true; do (npm run build; inotifywait -qre close_write,moved_to --exclude '\\.git' ./src/; ) done;"
},
"devDependencies": {
"@types/node": "^11.10.5",
"typescript": "^3.5.3",
"livescript": "^1.6.0"
},
"dependencies": {
"errno": "*",
"bindings": "^1.5.0",
"nan": "^2.14.0"
}
}