-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.76 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.76 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
{
"name": "@wikia/ad-engine",
"version": "13.1.2",
"description": "Wikia AdEngine",
"repository": {
"type": "git",
"url": "https://github.com/Wikia/AdEngine"
},
"dependencies": {
"babel-runtime": "6.26.0",
"blockadblock": "3.2.1",
"core-decorators": "^0.20.0",
"current-device": "0.7.8",
"eventemitter3": "3.0.1",
"lodash": "^4.17.4"
},
"devDependencies": {
"@slack/client": "4.1.0",
"babel-core": "^6.26.0",
"babel-eslint": "8.2.3",
"babel-loader": "7.1.4",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "^1.6.1",
"casperjs": "^1.1.4",
"chai": "^4.1.2",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.7.0",
"jsdom": "^11.3.0",
"jsdom-global": "^3.0.2",
"json-loader": "0.5.7",
"mocha": "4.1.0",
"mocha-jsdom": "^1.1.0",
"mocha-junit-reporter": "^1.15.0",
"mocha-webpack": "2.0.0-beta.0",
"nyc": "11.4.1",
"phantomjs-polyfill-object-assign": "0.0.2",
"phantomjs-prebuilt": "^2.1.7",
"sinon": "4.1.4",
"string-replace-webpack-plugin": "0.1.3",
"webpack": "4.5.0",
"webpack-cli": "2.0.14",
"webpack-dev-server": "3.1.3",
"webpack-merge": "4.1.2"
},
"files": [
"dist/",
"src/",
"jsconfig.json",
"README.md"
],
"main": "./dist/ad-engine.js",
"nyc": {
"report-dir": "./spec/build/",
"reporter": [
"cobertura"
]
},
"scripts": {
"build": "./node_modules/webpack/bin/webpack.js --progress --colors --hide-modules",
"casper": "cd tests/ && ../node_modules/casperjs/bin/casperjs test .",
"ci-check": "npm run test && npm run lint",
"lint": "./node_modules/.bin/eslint .",
"preversion": "./maintenance/preversion.sh",
"version": "./maintenance/version.sh",
"serve": "./node_modules/webpack-dev-server/bin/webpack-dev-server.js --progress --colors --inline --open --watch --content-base=./examples",
"tdd": "mocha-webpack -w --full-trace './spec/**/*.spec.js' -r jsdom-global/register --webpack-env.test",
"test": "mocha-webpack --full-trace './spec/**/*.spec.js' -r jsdom-global/register --webpack-env.test",
"test-coverage": "nyc mocha-webpack './spec/**/*.spec.js' -r jsdom-global/register --webpack-env.test --reporter mocha-junit-reporter --reporter-options mochaFile=./spec/build/tests.xml",
"watch": "./node_modules/webpack/bin/webpack.js --progress --colors --hide-modules --watch"
}
}