-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.4 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.4 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "cmild",
"version": "1.2.1",
"description": "Class methods invocation logging decorator",
"keywords": [
"class",
"decorator",
"invocation",
"logger",
"logging",
"reflection",
"introspection"
],
"repository": {
"type": "git",
"url": "https://github.com/LordotU/cmild.git"
},
"license": "MIT",
"author": "Oleg Levshin <LevshinO@gmail.com>",
"files": [
"build"
],
"main": "build/node.js",
"browser": "build/browser.js",
"scripts": {
"build": "NODE_ENV=production yarn run dev",
"dev": "CMILD_BROWSER=true yarn rollup -c && yarn rollup -c",
"lint": "eslint -c ./.eslintrc.js ./src",
"pre-commit": "lint-staged",
"prepare": "rm build/*; yarn build",
"test": "yarn test:jest && yarn test:coverage",
"test:coverage": "cat ./__tests__/coverage/lcov.info | yarn coveralls",
"test:jest": "yarn jest"
},
"lint-staged": {
"*.js": [
"yarn eslint -c ./.eslintrc.js",
"git add"
]
},
"config": {
"pre-git": {
"allow-untracked-files": true,
"pre-commit": [
"yarn pre-commit"
]
}
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "<rootDir>/__tests__/coverage",
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/__tests__/"
],
"coverageReporters": [
"json",
"lcov",
"text",
"html"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/__tests__/coverage/",
"<rootDir>/__tests__/mocks/"
],
"verbose": false
},
"dependencies": {
"colors": "^1.4.0",
"lodash.get": "^4.4.2"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@rollup/plugin-node-resolve": "^7.0.0",
"@rollup/plugin-replace": "^2.3.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.0.0",
"coveralls": "^3.0.9",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.20.0",
"jest": "^25.0.0",
"jest-mock-console": "^0.4.2",
"lint-staged": "^8.2.1",
"pre-git": "^3.17.1",
"regenerator-runtime": "^0.13.3",
"rollup": "^1.29.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.2.0"
},
"release": {
"analyzeCommits": "simple-commit-message"
}
}