-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1004 Bytes
/
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
{
"name": "swagger-dsl",
"version": "0.2.2",
"description": "CoffeeScript-based domain-specific language for generating JSON documents for Swagger.",
"repository": {
"type": "git",
"url": "https://github.com/intellinote/swagger-dsl.git"
},
"bugs": {
"url": "https://github.com/intellinote/swagger-dsl/issues"
},
"license": "MIT",
"author": "Intellinote",
"dependencies": {
"coffeescript": "2.6.1",
"optimist": "0.6.1",
"marked": "4"
},
"devDependencies": {
"browserify": "latest",
"uglify-js": "latest",
"coffee-coverage": "latest",
"docco": "latest",
"highlight.js": "latest",
"marked-toc": "latest",
"mocha": "latest",
"should": "latest"
},
"main": "lib/swagger-dsl.js",
"scripts": {
"test": "./node_modules/.bin/mocha -t 2000 -R list --compilers coffee:coffee-script/register ./test/test-swagger-dsl.coffee"
},
"bin": {
"swagger-dsl": "./bin/swagger-dsl"
},
"engines": {
"node": ">=0.10"
}
}