This repository has been archived by the owner on Jul 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.6 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
56
57
58
59
60
61
62
63
64
65
{
"name": "salad-example",
"version": "0.1.0",
"description": "Salad Example",
"homepage": "http://github.com/komola/salad-example",
"main": "./server.js",
"author": "Sebastian Hoitz, komola GmbH <[email protected]>",
"keywords": [
"node"
],
"private": true,
"apidocFilename": "API.md",
"maintainers": [
{
"name": "Sebastian Hoitz",
"email": "[email protected]"
}
],
"contributors": [],
"licenses": [],
"bugs": {
"url": ""
},
"repository": {
"type": "git",
"url": ""
},
"engines": {
"node": "~0.10.0",
"npm": "1"
},
"dependencies": {
"coffee-script": "~1.6.2",
"salad": "~0.0.1",
"source-map-support": "~0.1.5",
"coffee-script-mapped": "~0.1.2",
"superagent": "~0.14.2",
"xml2js": "~0.2.7",
"cli-table": "~0.2.0"
},
"devDependencies": {
"stylus": "~0.32.0",
"less": "~1.3.2",
"async": "~0.2.8",
"mocha": "~1.9.0",
"chai": "~1.6.0",
"sinon": "~1.7.0",
"should": "~1.2.2",
"grunt": "~0.4.1",
"supervisor": "~0.5.2",
"grunt-contrib-watch": "~0.4.0",
"grunt-contrib-coffee": "~0.7.0",
"grunt-contrib-stylus": "~0.5.0",
"grunt-bg-shell": "~2.0.1",
"grunt-cli": "~0.1.8",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-uglify": "~0.2.0",
"grunt-apidoc": "~0.2.0",
"grunt-contrib-clean": "~0.4.1"
},
"scripts": {
"test": "NODE_ENV=testing ./node_modules/.bin/mocha --require should --require coffee-script-mapped --reporter spec --timeout 2000 --growl ./test/server.coffee $(find test -name \"*Test.coffee\")",
"prepublish": "npm prune"
}
}