forked from Naartti/log-scope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.02 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
{
"name": "@teachiq/log-scope",
"version": "1.1.1",
"description": "Scoped & colorful console logging",
"author": "Mattias Naarttijärvi",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "restricted",
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/teachiq/log-scope.git"
},
"bugs": {
"url": "https://github.com/teachiq/log-scope/issues"
},
"homepage": "https://github.com/teachiq/log-scope#readme",
"main": "lib/index.js",
"module": "lib/index.js",
"files": [
"lib/index.js"
],
"keywords": [
"log",
"scope",
"javascript",
"color",
"console"
],
"scripts": {
"version": "echo $npm_package_version",
"preversion": "git pull && npm install && npm run lint && npm run test && npm run build",
"postversion": "npm publish && git push",
"build": "npm run clear:lib && rollup -c",
"clear:lib": "rimraf lib",
"start": "nodemon /dist/app.js",
"test": "jest --config jest.config.js",
"watch": "jest --watch --config jest.config.js",
"lint": "eslint . --ext .ts"
},
"dependencies": {},
"devDependencies": {
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-babel": "^5.0.2",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@types/jest": "^25.2.3",
"@types/node": "^13.7.2",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"@wessberg/rollup-plugin-ts": "^1.2.24",
"babel-preset-minify": "^0.5.1",
"eslint": "^7.7.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.0.1",
"nodemon": "^2.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.10.7",
"rollup-plugin-filesize": "^9.0.0",
"rollup-plugin-postcss": "^3.1.5",
"ts-jest": "^26.0.0",
"tslib": "^2.0.0",
"typescript": "^3.9.3"
}
}