-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.72 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": "lines-logger",
"version": "2.1.2",
"main": "lib/index.js",
"description": "A simple browser logger that keeps origin source files location",
"scripts": {
"build": "rm -rf ./lib && tsc -p src/tsconfig.json && rollup -c ./rollup.config.js && uglifyjs lib/index.js -o lib/index.js --compress",
"test": "mocha",
"report": "nyc mocha",
"lcov": "nyc report --reporter=text-lcov > coverage.lcov",
"codecov": "codecov",
"lint:check": "gts check",
"lint:fix": "gts fix",
"posttest": "npm run lint:check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Deathangel908/lines-logger.git"
},
"keywords": [
"logger"
],
"files": [
"lib"
],
"typings": "./lib/index.d.ts",
"author": "Andrew Koidan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Deathangel908/lines-logger/issues"
},
"homepage": "https://github.com/Deathangel908/lines-logger#readme",
"devDependencies": {
"@babel/cli": "^7.12.7",
"@babel/core": "^7.12.7",
"@babel/preset-env": "^7.12.7",
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.3",
"@types/node": "^11.11.3",
"@types/sinon": "^7.0.10",
"@types/sinon-chai": "^3.2.2",
"chai": "^4.1.2",
"codecov": "^3.2.0",
"gts": "^0.9.0",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"rollup": "^1.12.3",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-uglify": "^6.0.2",
"sinon": "^7.3.0",
"sinon-chai": "^3.3.0",
"ts-node": "^8.0.3",
"typescript": "^3.3.3333",
"uglify-js": "^3.6.1"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src/*.ts"
],
"reporter": [
"html"
],
"all": true
}
}