forked from speced/respec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.26 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
92
93
94
95
96
{
"name": "respec",
"version": "19.0.1",
"license": "W3C",
"description": "A technical specification pre-processor.",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"bin": {
"respec2html": "./tools/respec2html.js"
},
"repository": {
"type": "git",
"url": "git://github.com/sglaser/respec.git"
},
"contributors": [
"Marcos Cáceres <marcos@marcosc.com> (https://marcosc.com/)",
"Robin Berjon"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-modules-amd": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-preset-stage-3-without-async": "^1.0.0",
"chai": "^4.1.2",
"clipboard": "^1.7.1",
"domReady": "github:requirejs/domReady",
"eslint-plugin-jasmine": "^2.9.1",
"glob": "^7.1.2",
"handlebars": "^4.0.11",
"http-server": "^0.10.0",
"jasmine-core": "^2.8.0",
"jasmine-reporters": "^2.2.1",
"jquery": "^3.2.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-detect-browsers": "^2.2.6",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"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.1",
"moment": "^2.19.4",
"requirejs": "^2.3.5",
"text": "github:requirejs/text",
"uglify-es": "^3.2.2",
"url-search-params": "^0.10.0",
"webidl2": "^5.0.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:respec-pcisig-common": "node ./tools/builder.js --profile=pcisig-common",
"build": "npm run snyk-protect && npm run copydeps && npm run hb:build && npm run babel:build",
"build-nosynk": "npm run copydeps && npm run hb:build && npm run babel:build",
"all": "npm run build && npm run build:respec-pcisig-common",
"all-nosynk": "npm run build-nosynk && npm run build:respec-pcisig-common",
"copydeps": "node ./tools/copydeps.js",
"handlebars": "handlebars",
"hb:build": "node ./tools/expandpaths.js -a js/*/templates/*.html js/*/templates/*.handlebars js/*/templates/*.css js/core/templates/webidl-contiguous/*.html | xargs handlebars -f js/templates.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",
"prepare": "npm run snyk-protect",
"prepublish": "npm run snyk-protect"
},
"dependencies": {
"colors": "^1.1.2",
"command-line-args": "^4.0.7",
"command-line-usage": "^4.0.2",
"epipebomb": "^1.0.0",
"express": "^4.16.2",
"fs-extra": "^5.0.0",
"hyperhtml": "^2.4.3",
"loading-indicator": "^2.0.0",
"marcosc-async": "^4.0.3",
"marked": "^0.3.7",
"nightmare": "^2.10.0",
"prompt": "^1.0.0",
"snyk": "^1.59.0"
},
"snyk": true
}