forked from red-gate/highlight.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.43 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
{
"name": "highlightjs-tsql",
"description": "Syntax highlighting for T-SQL.",
"keywords": [
"highlight",
"syntax",
"T-SQL",
"sql"
],
"homepage": "https://github.com/cechi/highlight.js/",
"version": "1.0.4",
"author": {
"name": "cechi"
},
"contributors": [],
"bugs": {
"url": "https://github.com/cechi/highlight.js/issues"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git://github.com/cechi/highlight.js.git"
},
"main": "./lib/index.js",
"scripts": {
"mocha": "mocha",
"test": "mocha --globals document test",
"test-browser": "mocha --globals document test/browser",
"build": "node tools/build.js tsql xml htmlbars javascript",
"postbuild": "cpy ./build/highlight.pack.js ./dist/ --rename=highlight.min.js && cpy ./build/demo/styles/ssms.css ./dist/ --rename=ssms.min.css && cpy ./build/demo/styles/vs.css ./dist/ --rename=vs.min.css",
"prepare": "npm run build"
},
"files": [
"dist/highlight.min.js",
"dist/ssms.min.css",
"dist/vs.min.css"
],
"engines": {
"node": "*"
},
"devDependencies": {
"bluebird": "^3.5.1",
"commander": "^2.3.0",
"del": "^3.0.0",
"cpy-cli": "^1.0.1",
"gear": "^0.9.4",
"gear-lib": "^0.9.2",
"glob": "^7.0.3",
"js-beautify": "^1.5.10",
"jsdom": "^9.2.1",
"lodash": "^4.0.0",
"mocha": "^5.2.0",
"should": "^13.2.3",
"tiny-worker": "^2.1.2"
}
}