This repository was archived by the owner on Apr 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·145 lines (145 loc) · 5.54 KB
/
package.json
File metadata and controls
executable file
·145 lines (145 loc) · 5.54 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "oil",
"version": "1.1.1",
"description": "Module for Axel Springer oil.js (Opt-In Layer)",
"keywords": [
"IAB Europe",
"CMP",
"Opt-In",
"Consent"
],
"author": "Axel Springer Ideas Engineering GmbH",
"license": "GPL-2.0",
"main": "http_server.js",
"scripts": {
"start": "node http_server.js",
"build": "npm run build:clean && npm run build:debug && npm run build:prod && npm run build:docs && node etc/file_stats.js",
"build:prod": "cross-env-shell SNAPSHOT=${SNAPSHOT} NODE_ENV=production webpack --config etc/webpack.config.js",
"build:release": "npm run build:clean && npm run build:check && cross-env-shell SNAPSHOT=${SNAPSHOT} NODE_ENV=release webpack --config etc/webpack.config.js && npm run build:docs",
"build:check": "npm run eslint",
"build:clean": "rimraf dist/*",
"build:dev": "cross-env NODE_ENV=debug webpack --config etc/webpack.config.js",
"build:docs": "node docs/asciidoc.js",
"build:debug": "cross-env NODE_ENV=debug webpack --config etc/webpack.config.js ",
"build:watch": "webpack-dev-server --inline --watch --config etc/webpack.config.js",
"watch": "cross-env NODE_ENV=development webpack-dev-server --hot --config etc/webpack.config.js --inline --progress --port 3000 ",
"browserstack": "bash ./etc/runBrowserstackSeq.sh",
"browserstack:full": "bash ./etc/runFullBrowserstackSeq.sh",
"pree2e": "node etc/nightwatch.local.conf.js",
"e2e": "mkdir -p target/reports &&./node_modules/.bin/nightwatch -c etc/nightwatch.local.conf.js -e chrome",
"e2esafari": "./node_modules/.bin/nightwatch -c etc/nightwatch.local.conf.js -e safari",
"test": "npm run test:unit && npm run test:node",
"test:unit": "cross-env NODE_ENV=test karma start etc/karma.conf.ci.js",
"test:node": "mocha 3000 test/node",
"test:selenium": "node etc/nightwatch.jenkins.conf.js && mkdir -p target/reports &&./node_modules/.bin/nightwatch -c etc/nightwatch.jenkins.conf.js -e chrome",
"test:watch": "cross-env SNAPSHOT=$SNAPSHOT cross-env NODE_ENV=test karma start etc/karma.conf.js",
"eslint": "eslint \"src/*.js\" && eslint \"src/scripts/*.js\" && eslint \"etc/*\" && eslint \"test/specs/**/*.js\" && eslint \"test/e2e/**/*.js\"",
"check": "npm run eslint",
"postinstall": "npm run build",
"changelog:major": "node changelog.js -M",
"changelog:minor": "node changelog.js -m",
"changelog:path": "node changelog.js -p"
},
"dependencies": {
"compression": "1.7.2",
"consent-string": "1.2.1",
"express": "4.16.2",
"fresh": "0.5.2",
"js-cookie": "2.1.4",
"serve-index": "1.9.1",
"serve-static": "1.13.2"
},
"devDependencies": {
"asciidoctor.js": "1.5.6",
"babel-core": "6.26.0",
"babel-eslint": "8.1.0",
"babel-loader": "7.1.4",
"babel-plugin-dynamic-import-webpack": "1.0.2",
"babel-plugin-transform-array-from": "1.0.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-es2015-arrow-functions": "6.22.0",
"babel-plugin-transform-es2015-classes": "6.24.1",
"babel-plugin-transform-es2015-destructuring": "6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"babel-plugin-transform-es2015-object-super": "6.24.1",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.7.0",
"babel-register": "6.26.0",
"banner-webpack-plugin": "0.2.3",
"chai": "4.1.2",
"cli-table": "0.3.1",
"compass-mixins": "0.12.10",
"conventional-changelog-cli": "1.3.22",
"copy-webpack-plugin": "4.5.1",
"cross-env": "5.1.4",
"css-loader": "0.28.11",
"eslint": "4.19.1",
"eslint-loader": "2.0.0",
"eslint-plugin-es6-recommended": "0.1.2",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-jasmine": "2.9.3",
"exports-loader": "0.7.0",
"expose-loader": "0.7.5",
"file-loader": "1.1.11",
"fs-extra": "^6.0.1",
"generate-changelog": "1.7.1",
"glob": "7.1.2",
"gzipme": "^0.1.1",
"html-differ": "1.3.4",
"html-webpack-plugin": "3.2.0",
"imports-loader": "0.8.0",
"include-media": "1.4.9",
"istanbul-instrumenter-loader": "3.0.1",
"jasmine": "3.1.0",
"jasmine-ajax": "3.3.1",
"jasmine-core": "3.1.0",
"jasmine-jquery": "2.1.1",
"jasmine-node": "1.14.5",
"json-loader": "0.5.7",
"karma": "2.0.0",
"karma-babel-preprocessor": "7.0.0",
"karma-chrome-launcher": "2.2.0",
"karma-coverage": "1.1.1",
"karma-es6-shim": "1.0.0",
"karma-jasmine": "1.1.2",
"karma-jasmine-html-reporter": "1.0.0",
"karma-jasmine-jquery": "0.1.1",
"karma-junit-reporter": "1.2.0",
"karma-polyfill": "1.0.0",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "3.0.0",
"mocha": "3.5.0",
"nightwatch": "0.9.21",
"nightwatch-html-reporter": "2.0.5",
"node-sass": "4.8.3",
"open-browser-webpack-plugin": "0.0.5",
"pretty": "2.0.0",
"puppeteer": "1.4.0",
"raw-loader": "0.5.1",
"remap-istanbul": "0.11.0",
"rimraf": "2.6.2",
"sass-loader": "7.0.1",
"selenium-download": "2.0.12",
"source-map-loader": "0.2.3",
"style-loader": "0.21.0",
"supertest": "3.0.0",
"to-string-loader": "1.1.5",
"webpack": "4.8.1",
"webpack-cli": "2.0.15",
"webpack-dev-server": "3.1.3",
"webpack-md5-hash": "0.0.6",
"webpack-merge": "4.1.2",
"webpack-visualizer-plugin": "0.1.11"
},
"peerDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/as-ideas/oil.git"
},
"engine-strict": true,
"engines": {
"node": ">= 8.8 <9",
"npm": ">= 6.0"
}
}