-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.94 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
{
"name": "logda",
"version": "1.2.0",
"description": "Efficient lightweight logger",
"main": "dist",
"keywords": [
"log",
"logger",
"stacktrace",
"debug",
"browser"
],
"author": "Alex Castells",
"license": "MIT",
"repository": "github:alextremp/logda",
"bugs": "https://github.com/alextremp/logda/issues",
"runkitExampleFilename": "runkitExample.js",
"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": "mocha --recursive --require @babel/register \"src/test/**/*Test.js\"",
"coverage": "nyc --reporter=html --exclude=\"src/test\" npm run test",
"coverage:ci": "nyc --reporter=cobertura --exclude=\"src/test\" npm run test && codecov",
"benchmark": "babel-node src/benchmark/benchmark.js",
"lint": "sui-lint js",
"check": "npm run lint && npm run test",
"build": "babel src/main --out-dir dist",
"versiona": "node versiona.js"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/register": "^7.7.4",
"@babel/runtime": "^7.7.6",
"@s-ui/lint": "^3.14.0",
"babel-loader": "^8.0.6",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"codecov": "^3.6.1",
"jsdom": "15.2.1",
"jsdom-global": "3.0.2",
"loglevel": "^1.6.6",
"mocha": "5.2.0",
"nightingale": "^9.2.3",
"nightingale-console": "^6.1.1",
"nyc": "^15.0.0",
"sinon": "^7.5.0",
"versiona": "^4.0.0"
},
"babel": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
},
"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"
},
"dependencies": {}
}