-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.84 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
{
"name": "@adv-ui/piko-logger",
"version": "1.1.0",
"description": "Tiny logger for web environments",
"main": "dist",
"scripts": {
"clean": "rm -Rf dist",
"phoenix": "rm -Rf node_modules && rm -Rf package-lock.json && npm i",
"prepack": "npm run clean && npm run build",
"test": "sui-test server --pattern '\"src/test/**/*Test.js\"'",
"integration-test": "sui-test server --pattern \"src/integration-test/**/*Test.js\"",
"test-all": "npm run integration-test",
"coverage": "nyc --reporter=html --exclude='\"src/test/**/*Test.js\"' npm run test-all",
"coverage:ci": "nyc --reporter=cobertura --exclude='\"src/test/**/*Test.js\"' npm run test-all && codecov",
"lint": "sui-lint js",
"check": "npm run lint && npm run test-all",
"build": "babel src/main --out-dir dist",
"versiona": "node versiona.js"
},
"repository": "github:scm-spain/piko-logger",
"bugs": "https://github.com/scm-spain/piko-logger/issues",
"keywords": [
"ads",
"advertising",
"schibsted",
"adevinta",
"logger"
],
"author": "One Punch Team",
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.13.16",
"@babel/core": "7.13.16",
"@babel/plugin-transform-modules-commonjs": "7.13.8",
"@babel/register": "7.13.16",
"@babel/runtime": "7.13.17",
"@s-ui/lint": "3",
"@s-ui/test": "4",
"babel-plugin-transform-define": "2.0.0",
"babel-preset-sui": "3",
"chai": "4.3.4",
"codecov": "3.8.2",
"html-webpack-plugin": "5.3.1",
"mocha": "8.4.0",
"nyc": "15.1.0",
"versiona": "4",
"jsdom": "16.5.3",
"sinon": "10.0.0"
},
"eslintConfig": {
"extends": [
"./node_modules/@s-ui/lint/eslintrc.js"
]
},
"prettier": "./node_modules/@s-ui/lint/.prettierrc.js",
"stylelint": {
"extends": "./node_modules/@s-ui/lint/stylelint.config.js"
}
}