forked from speced/respec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.06 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "respec",
"version": "17.0.0",
"license": "W3C",
"description": "A technical specification pre-processor.",
"engines": {
"node": ">=5"
},
"bin": {
"respec2html": "./tools/respec2html.js"
},
"repository": {
"type": "git",
"url": "git://github.com/w3c/respec.git"
},
"author": "Robin Berjon",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es2015-modules-amd": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-3": "^6.24.1",
"chai": "^4.1.2",
"clipboard": "^1.7.1",
"domReady": "github:requirejs/domReady",
"eslint-plugin-jasmine": "^2.8.5",
"glob": "^7.1.2",
"handlebars": "^4.0.10",
"http-server": "^0.10.0",
"jasmine-core": "^2.8.0",
"jasmine-reporters": "^2.2.1",
"jquery": "^3.2.1",
"js-beautify": "^1.7.3",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-detect-browsers": "^2.2.5",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.4",
"karma-opera-launcher": "^1.0.0",
"karma-requirejs": "^1.1.0",
"karma-safari-launcher": "^1.0.0",
"karma-safaritechpreview-launcher": "0.0.6",
"karma-verbose-summary-reporter": "0.0.1",
"mocha": "^4.0.0",
"moment": "^2.18.1",
"requirejs": "^2.3.5",
"text": "github:requirejs/text",
"uglify-es": "^3.1.3",
"url-search-params": "^0.10.0",
"webidl2": "^4.1.0"
},
"scripts": {
"babel:build": "babel src -d js --source-maps -q",
"babel:watch": "babel src -d js --watch --source-maps",
"build:respec-w3c-common": "node ./tools/builder.js --profile=w3c-common",
"build": "npm run copydeps && npm run hb:build && npm run highlight:build && npm run babel:build",
"copydeps": "node ./tools/copydeps.js",
"handlebars": "handlebars",
"hb:build": "node ./tools/expandpaths.js -a js/*/templates/*.html js/*/templates/*.css js/core/templates/webidl-contiguous/*.html | xargs handlebars -f js/templates.js",
"highlight:build": "hljs -n --output js/deps/ xml javascript css http markdown json abnf && mv -f js/deps/highlight.pack.js js/deps/highlight.js",
"karma": "karma start --single-run",
"release": "node ./tools/release.js",
"server": "npm start",
"snyk-protect": "snyk protect",
"start": "http-server",
"test:build": "mocha ./tests/test-build.js",
"test:headless": "node ./tests/headless.js",
"test:karma": "npm run karma",
"prepublish": "npm run snyk-protect"
},
"dependencies": {
"colors": "^1.1.2",
"command-line-args": "^4.0.7",
"command-line-usage": "^4.0.1",
"epipebomb": "^1.0.0",
"express": "^4.16.1",
"fs-extra": "^4.0.2",
"highlight.js": "github:marcoscaceres/highlight.js",
"hyperhtml": "^1.11.1",
"loading-indicator": "^2.0.0",
"marcosc-async": "^4.0.3",
"marked": "^0.3.6",
"nightmare": "^2.10.0",
"prompt": "^1.0.0",
"snyk": "^1.42.3"
},
"snyk": true
}