-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (49 loc) · 1.26 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
{
"name": "pixel-bmp",
"version": "0.0.1",
"description": "Parse Bitmap to ImageData in cross-platform",
"main": "lib",
"files": [
"lib"
],
"scripts": {
"start": "jasminetea --file index.coffee --watch",
"localhost": "zuul test --local 59798 --open",
"test": "jasminetea --file index.coffee --cover --report --lint",
"test-cloud": "zuul test",
"prepublish": "node -e \"if(process.env.TRAVIS){}else{process.exit(1)}\" && npm run compile || echo skip prepublish",
"compile": "coffee --output lib --bare --compile src"
},
"config": {
"ghooks": {
"pre-commit": "npm test"
}
},
"dependencies": {
"bmp-js": "^0.0.1",
"pixel-util": "^0.0.2"
},
"devDependencies": {
"brfs": "^1.4.1",
"browserify": "^12.0.1",
"coffeeify": "^1.1.0",
"fixture-images": "^0.1.5",
"ghooks": "^0.3.2",
"jasminetea": "^0.2.1",
"zuul": "^3.7.2"
},
"keywords": [
"pixel",
"bmp"
],
"repository": {
"type": "git",
"url": "git+https://github.com/59naga/pixel-bmp.git"
},
"bugs": {
"url": "https://github.com/59naga/pixel-bmp/issues"
},
"homepage": "https://github.com/59naga/pixel-bmp#readme",
"author": "59naga <[email protected]> (http://berabou.me)",
"license": "MIT"
}