This repository has been archived by the owner on Jul 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.6 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
97
98
{
"name": "oma-respec",
"version": "0.0.30",
"license": "OMA",
"description": "A technical specification pre-processor.",
"engines": {
"node": ">=5"
},
"bin": {
"respec2html": "./tools/respec2html.js"
},
"repository": {
"type": "git",
"url": "git://github.com/OpenMobileAlliance/Tools.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.3.3",
"chai": "^3.5.0",
"clipboard": "^1.6.1",
"domReady": "github:requirejs/domReady",
"glob": "^7.1.1",
"handlebars": "^4.0.6",
"http-server": "^0.9.0",
"jasmine-core": "^2.5.2",
"jasmine-reporters": "^2.2.1",
"jquery": "^3.2.1",
"js-beautify": "^1.6.12",
"jscs": "^3.0.7",
"jshint": "^2.9.4",
"karma": "^1.6.0",
"karma-chrome-launcher": "^2.0.0",
"karma-detect-browsers": "^2.2.5",
"karma-edge-launcher": "^0.4.1",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-opera-launcher": "^1.0.0",
"karma-requirejs": "^1.1.0",
"karma-safari-launcher": "^1.0.0",
"karma-safaritechpreview-launcher": "0.0.5",
"karma-verbose-summary-reporter": "0.0.1",
"mocha": "^3.2.0",
"moment": "^2.18.1",
"requirejs": "^2.3.3",
"text": "github:requirejs/text",
"uglify-js": "^2.8.22",
"webidl2": "^2.4.0",
"whatwg-fetch": "^2.0.3"
},
"scripts": {
"babel-version": "babel --version",
"babel:build": "babel src -d js --source-maps",
"babel:watch": "babel src -d js --watch --source-maps",
"build": "npm run hb:build && npm run build:highlight && npm run babel:build && npm run copydeps && npm run build:respec-oma-common",
"build:highlight": "cd node_modules/highlight.js/ && npm install && node ./tools/build.js -n xml javascript css http markdown json abnf && cd ../../",
"build:respec-w3c-common": "./tools/builder.js --profile=w3c-common",
"build:respec-oma-common": "./tools/builder.js --profile=oma-common",
"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",
"jscs": "jscs --esnext tests tools",
"jscs:fix": "jscs --esnext --fix tests",
"jshint": "jshint karma.conf.js tests tools",
"karma": "karma start --single-run",
"prepublish": "npm run build:highlight && npm run snyk-protect && npm run copydeps && npm run babel:build",
"pretest": "npm run jshint && npm run jscs",
"server": "npm start",
"snyk-protect": "snyk protect",
"start": "http-server",
"test": "npm run test:headless && npm run test:karma",
"test:appveyor": "npm run pretest",
"test:build": "mocha ./tests/test-build.js",
"test:headless": "node ./tests/headless.js",
"test:karma": "npm run karma",
"test:travis": "npm run pretest && npm run test:build && karma start --single-run --reporters progress karma.conf.js && npm run test:headless"
},
"dependencies": {
"colors": "^1.1.2",
"command-line-args": "^4.0.2",
"command-line-usage": "^4.0.0",
"epipebomb": "^1.0.0",
"express": "^4.15.2",
"fs-promise": "^2.0.2",
"highlight.js": "github:isagalaev/highlight.js",
"loading-indicator": "^2.0.0",
"marcosc-async": "^4.0.3",
"marked": "^0.3.6",
"nightmare": "^2.10.0",
"prompt": "^1.0.0",
"snyk": "^1.28.0"
},
"snyk": true
}