-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "snapy-stream",
"description": "Take a snapshot of a stream",
"version": "0.1.0",
"homepage": "https://github.com/snapyjs/",
"author": {
"name": "Paul Pflugradt",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/snapyjs/snapy-stream"
},
"engines": {
"node": "*"
},
"main": "lib/client.js",
"files": [
"lib/*.js",
"shrinkwrap.yaml"
],
"dependencies": {},
"devDependencies": {
"coffee-cli": "^0.2.1",
"coffee-loader": "^0.9.0",
"script-runner": "^0.1.7",
"snapy": "^0.1.0"
},
"keywords": [],
"readmeFilename": "README.md",
"scripts": {
"build": "run-npm build:*",
"build:client": "coffee-cli --bare --no-header --compile --output lib/ src/client.coffee",
"watch": "run-npm watch:*",
"watch:client": "coffee-cli --watch --bare --no-header --compile --output lib/ src/client.coffee",
"test": "snapy",
"preversion": "npm test",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags && npm publish"
}
}