-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.21 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.21 KB
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
{
"name": "asar-util",
"version": "0.0.1",
"description": "",
"main": "lib/asar.js",
"bin": {
"asar-util": "bin/asar-util"
},
"scripts": {
"pretest": "npm run clean",
"test": "mocha --reporter spec --require=coffee-script/register test/*.coffee",
"test-verbose": "mocha --reporter spec --require=coffee-script/register test/*.coffee --verbose",
"clean": "rm -rf tmp/",
"build": "coffee --bare --output lib --compile src"
},
"engines": {
"node": ">= 0.10.0"
},
"keywords": [
"atom-shell",
"asar",
"archive"
],
"homepage": "https://github.com/bwin/asar-util",
"author": {
"name": "Benjamin Winkler (bwin)"
},
"repository": {
"type": "git",
"url": "git://github.com/bwin/asar-util.git"
},
"bugs": {
"url": "https://github.com/bwin/asar-util/issues"
},
"license": "MIT",
"dependencies": {
"filesize": "^3.0.0",
"minimatch": "^2.0.1",
"minimist": "^1.1.0",
"mkdirp": "^0.5.0",
"progress": "^1.1.8",
"queue-async": "^1.0.7",
"stream-equal": "^0.1.5",
"terminal-colors": "^0.1.3",
"walkdir": "^0.0.7"
},
"devDependencies": {
"coffee-script": "^1.8.0",
"lodash": "^2.4.1",
"mocha": "^2.0.1"
}
}