forked from foliojs/restructure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.35 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
{
"name": "@pdf-lib/restructure",
"version": "0.0.1",
"description": "Declaratively encode and decode binary data",
"main": "index.js",
"scripts": {
"test": "mocha",
"cover": "mocha --require coverage.js --reporter html-cov > coverage.html",
"coveralls": "mocha --require coverage.js --reporter mocha-lcov-reporter | coveralls",
"prepublish": "coffee -c src/ index.coffee",
"postpublish": "rm -rf index.js src/*.js"
},
"dependencies": {
"browserify-optional": "^1.0.0"
},
"devDependencies": {
"chai": "~1.9.1",
"coffee-coverage": "~0.4.2",
"coffee-script": "~1.7.1",
"concat-stream": "~1.4.5",
"coveralls": "^2.10.0",
"iconv-lite": "^0.4.7",
"mocha": "~1.18.2",
"mocha-lcov-reporter": "0.0.1"
},
"repository": {
"type": "git",
"url": "git://github.com/Hopding/restructure.git"
},
"keywords": [
"binary",
"struct",
"encode",
"decode"
],
"author": "Andrew Dillon <[email protected]>",
"contributors": [
"Devon Govett <[email protected]> (http://badassjs.com/)"
],
"bugs": {
"url": "https://github.com/Hopding/png-ts/issues"
},
"license": "MIT",
"homepage": "https://github.com/Hopding/restructure",
"browserify": {
"transform": [
"browserify-optional"
]
},
"private": false,
"directories": {
"test": "test"
}
}