respec/package.json

94 lines
3.0 KiB
JSON
Raw Normal View History

{
"name": "respec",
2018-03-02 04:37:15 +01:00
"version": "20.0.3",
"license": "W3C",
2016-08-10 03:47:37 +02:00
"description": "A technical specification pre-processor.",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"bin": {
2017-05-21 03:04:03 +02:00
"respec2html": "./tools/respec2html.js"
},
"repository": {
"type": "git",
"url": "git://github.com/w3c/respec.git"
},
"contributors": [
"Marcos Cáceres <marcos@marcosc.com> (https://marcosc.com/)",
"Robin Berjon",
"Kagami Sascha Rosylight <saschaplas@outlook.com>"
],
"devDependencies": {
2017-08-21 03:33:52 +02:00
"babel-cli": "^6.26.0",
2017-04-12 03:27:21 +02:00
"babel-plugin-transform-es2015-modules-amd": "^6.24.1",
2017-06-16 06:56:25 +02:00
"babel-preset-stage-3": "^6.24.1",
"babel-preset-stage-3-without-async": "^1.0.0",
2017-09-05 10:40:22 +02:00
"chai": "^4.1.2",
"clipboard": "^2.0.0",
"domReady": "github:requirejs/domReady#d85bdc38a6df868ead52ab3e80715aaf60e68765",
2018-03-01 01:37:11 +01:00
"eslint-plugin-jasmine": "^2.9.3",
2017-05-28 17:02:07 +02:00
"glob": "^7.1.2",
2017-10-18 07:44:27 +02:00
"handlebars": "^4.0.11",
2018-03-01 01:37:11 +01:00
"http-server": "^0.11.1",
"jasmine-core": "^3.1.0",
2018-01-30 05:32:03 +01:00
"jasmine-reporters": "^2.3.0",
"jquery": "^3.3.1",
"karma": "^2.0.0",
2017-06-25 12:59:20 +02:00
"karma-chrome-launcher": "^2.2.0",
2017-11-29 01:43:37 +01:00
"karma-detect-browsers": "^2.2.6",
2017-09-28 08:01:57 +02:00
"karma-edge-launcher": "^0.4.2",
2017-12-13 19:40:54 +01:00
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^1.1.1",
2016-11-10 07:14:08 +01:00
"karma-mocha": "^1.3.0",
2017-10-18 07:44:27 +02:00
"karma-mocha-reporter": "^2.2.5",
"karma-opera-launcher": "^1.0.0",
2016-09-20 02:58:39 +02:00
"karma-requirejs": "^1.1.0",
"karma-safari-launcher": "^1.0.0",
2017-06-16 03:59:56 +02:00
"karma-safaritechpreview-launcher": "0.0.6",
"karma-verbose-summary-reporter": "0.0.1",
2018-02-14 00:30:30 +01:00
"mocha": "^5.0.1",
2018-01-30 05:32:03 +01:00
"moment": "^2.20.1",
2017-08-21 03:33:52 +02:00
"requirejs": "^2.3.5",
"text": "github:requirejs/text#d04de4ffd7bf5ba6cb80cdca2d40d4f6f52a1b1f",
"uglify-es": "3.3.7",
2017-08-01 05:44:01 +02:00
"url-search-params": "^0.10.0",
"webidl2": "^10.2.0"
},
"scripts": {
2017-08-15 06:43:29 +02:00
"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:components": "npm run copydeps && node ./tools/build-components.js && npm run babel:build",
"build": "npm run snyk-protect && npm run build:components",
"copydeps": "node ./tools/copydeps.js",
"handlebars": "handlebars",
2016-06-25 10:15:36 +02:00
"karma": "karma start --single-run",
"release": "node ./tools/release.js",
"server": "npm start",
"snyk": "snyk",
"snyk-protect": "snyk protect",
"start": "npm run babel:build && http-server",
2016-06-25 10:15:36 +02:00
"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",
2018-02-12 05:29:14 +01:00
"command-line-args": "^5.0.2",
2018-01-30 05:32:03 +01:00
"command-line-usage": "^4.1.0",
"epipebomb": "^1.0.0",
"fs-extra": "^5.0.0",
"highlight.js": "github:marcoscaceres/highlight.js#7b144b3b83ce296d5b29c5e4fc2ea2a65e9d3f32",
2018-03-01 01:37:11 +01:00
"hyperhtml": "^2.6.0",
"loading-indicator": "^2.0.0",
2018-03-01 01:37:11 +01:00
"marked": "^0.3.17",
2016-08-08 08:59:08 +02:00
"prompt": "^1.0.0",
2018-03-01 01:37:11 +01:00
"puppeteer": "^1.1.1",
"snyk": "^1.69.10"
},
"snyk": true
2016-06-24 02:19:27 +02:00
}