-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1006 Bytes
/
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
{
"name": "@studio/log-x",
"version": "1.3.1",
"description": "x-out confidential data in log entries",
"main": "lib/x.js",
"scripts": {
"lint": "eslint .",
"test": "mocha",
"watch": "mocha --watch",
"posttest": "npm run lint",
"preversion": "npm test",
"version": "changes --commits",
"postversion": "git push --follow-tags && npm publish"
},
"keywords": [
"log",
"filter",
"x-out",
"confidential"
],
"author": "Maximilian Antoni <[email protected]>",
"homepage": "https://github.com/javascript-studio/studio-log-x",
"eslintConfig": {
"extends": "@studio"
},
"devDependencies": {
"@sinonjs/referee": "^2.3.0",
"@studio/changes": "^1.5.2",
"@studio/eslint-config": "^1.0.2",
"eslint": "^5.0.1",
"mocha": "^5.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/javascript-studio/studio-log-x.git"
},
"files": [
"lib",
"LICENSE",
"README.md"
],
"license": "MIT"
}