-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.5 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.5 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
{
"name": "snapy-node",
"description": "Test runner for node",
"version": "0.1.6",
"homepage": "https://github.com/snapyjs/",
"author": {
"name": "Paul Pflugradt",
"email": "paul.pflugradt@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/snapyjs/snapy-node"
},
"engines": {
"node": "*"
},
"main": "lib/server.js",
"files": [
"lib/*.js"
],
"dependencies": {
"chalk": "^2.4.1",
"fs-extra": "^6.0.1",
"handle-that": "^0.1.5",
"require-from-string": "^2.0.2",
"source-map": "^0.7.3"
},
"devDependencies": {
"coffee-cli": "^0.2.1",
"coffee-loader": "^0.9.0",
"read-conf": "^0.4.4",
"script-runner": "^0.1.7",
"snapy": "^0.1.5"
},
"keywords": [],
"readmeFilename": "README.md",
"scripts": {
"build": "run-npm build:*",
"build:server": "coffee-cli --next --bare --no-header --compile --output lib/ src/server.coffee src/worker.coffee",
"build:client": "coffee-cli --bare --no-header --compile --output lib/ src/client.coffee",
"watch": "run-npm watch:*",
"watch:server": "coffee-cli --next --watch --bare --no-header --compile --output lib/ src/server.coffee src/worker.coffee",
"watch:client": "coffee-cli --watch --bare --no-header --compile --output lib/ src/client.coffee",
"doc": "toDoc lib/server.js",
"test": "snapy",
"preversion": "npm test",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags && npm publish"
}
}