-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
{
"name": "xz",
"version": "1.2.1",
"description": "node bindings for the xz compression library",
"keywords": [
"compression",
"xz"
],
"author": "Robey Pointer <[email protected]>",
"homepage": "https://github.com/robey/node-xz",
"repository": {
"type": "git",
"url": "git://github.com/robey/node-xz.git"
},
"license": "Apache-2.0",
"scripts": {
"build": "node-gyp configure build && babel --source-maps --out-dir lib src",
"build-test": "babel --source-maps --out-dir test/lib test/src",
"clean": "rm -rf lib test/lib build",
"distclean": "npm run clean && rm -rf node_modules",
"prepublish": "npm run build",
"test": "npm run build && npm run build-test && mocha -R spec --colors test/lib"
},
"dependencies": {
"nan": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-preset-es2015-node4": "^1.0.0",
"mocha": "*",
"mocha-sprinkles": "*",
"should": "*"
},
"main": "./lib/xz.js",
"files": [
"binding.gyp",
"Changelog.md",
"deps",
"lib",
"LICENCE.txt",
"package.json",
"README.md",
"src/c++"
]
}