This repository has been archived by the owner on Mar 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.64 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
{
"name": "@schibstedspain/openads-appnexus",
"version": "2.0.0",
"description": "OpenAds AppNexus module for handle ads",
"main": "dist/",
"scripts": {
"cleanDistFolder": "rm -Rf ./dist",
"prepublishOnly": "npm run cleanDistFolder && npm run build",
"build": "npm run cleanDistFolder && babel src --ignore test --out-dir dist ",
"test": "mocha --recursive --require babel-polyfill --compilers js:babel-register \"src/test/**/*.js\"",
"lint": "sui-lint js",
"coverage": "istanbul cover --report html _mocha -- ./src/*test --recursive --compilers js:babel-register",
"coverage:ci": "istanbul cover _mocha -- ./src/*test --recursive --compilers js:babel-register && codecov"
},
"repository": {
"type": "git",
"url": "https://github.com/scm-spain/OpenAds-appnexus"
},
"keywords": [
"appnexus",
"ast",
"appnexus seller tag"
],
"author": "The Mighty Ducks of Advertising",
"license": "ISC",
"devDependencies": {
"@s-ui/lint": "^2.18.0",
"babel-cli": "^6.24.0",
"babel-loader": "^7.1.1",
"babel-polyfill": "^6.23.0",
"babel-preset-sui": "1",
"babel-register": "^6.24.0",
"chai": "^4.0.2",
"codecov": "^3.0.1",
"istanbul": "^1.1.0-alpha.1",
"jsdom": "^11.10.0",
"mocha": "^3.4.2",
"onchange": "^3.3.0",
"sinon": "^2.3.4"
},
"pre-commit": [
"lint",
"test"
],
"babel": {
"presets": [
"sui"
]
},
"eslintConfig": {
"extends": [
"./node_modules/@s-ui/lint/eslintrc.js"
]
},
"dependencies": {
"@schibstedspain/ast": "^0.16.0",
"@schibstedspain/openads-connector-api": "^2.0.0",
"loglevel": "^1.6.1"
}
}