-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.23 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
{
"name": "@adv-ui/openads",
"version": "5.1.1",
"description": "OpenAds: Advertising library",
"main": "dist/",
"scripts": {
"cleanDistFolder": "rm -Rf ./dist",
"prepublishOnly": "npm run cleanDistFolder && npm run build",
"phoenix": "rm -Rf node_modules && rm -Rf package-lock.json && npm install",
"build": "npm run cleanDistFolder && babel src --ignore test --out-dir dist ",
"test": "mocha --recursive --require @babel/register \"src/test/**/*.js\"",
"test:integration": "mocha --recursive --require @babel/register \"src/itest/openads/**/*.js\"",
"coverage": "nyc --reporter=html --exclude=\"src/test\" npm run test",
"coverage:ci": "nyc --reporter=cobertura --exclude=\"src/test\" npm run test && codecov",
"performance": "babel-node src/itest/performance",
"watch": "onchange 'src/**/*.js' -- npm run build",
"lint": "sui-lint js",
"check": "npm run lint && npm run test",
"check:ci": "npm run check && npm run test:integration",
"versiona": "node versiona.js"
},
"repository": {
"type": "git",
"url": "https://github.com/scm-spain/OpenAds.git"
},
"keywords": [
"ads",
"advertising",
"schibsted",
"adevinta"
],
"author": "One Punch Team",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.8.0",
"@babel/core": "^7.8.0",
"@babel/node": "^7.8.0",
"@babel/plugin-transform-modules-commonjs": "^7.8.0",
"@babel/register": "^7.8.0",
"@babel/runtime": "^7.8.0",
"@s-ui/lint": "3",
"@s-ui/perf": "~1.4.0",
"babel-loader": "^8.0.6",
"babel-preset-sui": "^2.14.0",
"chai": "^4.2.0",
"codecov": "~3.6.5",
"jsdom": "~11.12.0",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"sinon": "^8.0.4",
"versiona": "4"
},
"pre-commit": [
"lint",
"test"
],
"babel": {
"presets": [
"sui"
],
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
},
"eslintConfig": {
"extends": [
"./node_modules/@s-ui/lint/eslintrc.js"
]
},
"dependencies": {
"@adv-ui/openads-connector-api": "3",
"loglevel": "^1.6.6"
},
"prettier": "./node_modules/@s-ui/lint/.prettierrc.js",
"stylelint": {
"extends": "./node_modules/@s-ui/lint/stylelint.config.js"
}
}