This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.48 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
{
"name": "gavel2html",
"version": "2.1.0",
"description": "Convert output from Gavel to HTML",
"main": "lib/index.js",
"scripts": {
"build": "npm run build:coffee-script && npm run build:html-sanitizer",
"build:coffee-script": "coffee -b -c -o lib/ src/",
"build:html-sanitizer": "node -e \"var fs = require('fs'); fs.createReadStream('src/html-sanitizer.js').pipe(fs.createWriteStream('lib/html-sanitizer.js'));\"",
"lint": "coffeelint src",
"test": "npm run test:server && npm run test:browser",
"test:server": "mocha \"test/**/*.coffee\"",
"test:browser": "mochify \"test/**/*.coffee\" --transform=coffeeify --extension=.coffee",
"prepublishOnly": "npm run test && npm run build"
},
"files": [
"lib",
"LICENSE"
],
"homepage": "https://github.com/apiaryio/gavel2html",
"repository": {
"type": "git",
"url": "https://github.com/apiaryio/gavel2html.git"
},
"bugs": {
"url": "https://github.com/apiaryio/gavel2html/issues"
},
"keywords": [
"html",
"http",
"validation",
"diff",
"request",
"response",
"gavel"
],
"author": "Apiary Czech Republic, s.r.o. <[email protected]>",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.4",
"coffee-script": "^1.12.7",
"coffeeify": "^2.1.0",
"mocha": "^9.1.3",
"mochify": "^8.1.0"
},
"dependencies": {
"clone": "^2.1.2",
"googlediff": "^0.1.0",
"is-type": "~0.0.1",
"json-pointer": "^0.6.1",
"traverse": "^0.6.6"
}
}