forked from politie/informant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.53 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
{
"name": "@politie/informant",
"version": "1.0.1",
"description": "Informant is a simple and fast logging library for Node.js and browser JavaScript applications.",
"main": "dist/informant.cjs.js",
"module": "dist/informant.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist/informant.{cjs,esm}.*",
"dist/*.d.ts"
],
"scripts": {
"prepack": "npm run build && rimraf dist/*.spec.*",
"clean": "rimraf .nyc_output coverage dist",
"build": "npm run clean && npm test && npm run bundle",
"bundle": "tsc --module es6 && rollup -c && node ./test-bundle",
"tsc": "tsc",
"test": "npm run lint && npm run tsc && nyc --check-coverage --lines 100 --functions 100 --branches -1 --statements 100 --reporter text-summary --reporter lcov --include \"dist/**/*.js\" --exclude \"**/*.spec.js\" mocha --forbid-only \"dist/**/*.spec.js\"",
"ci:travis": "npm run build && cat coverage/lcov.info | node_modules/.bin/coveralls",
"ci:circle": "npm run build",
"posttest": "rimraf .nyc_output",
"watch": "nodemon --watch src --ext ts --exec npm run watch:run",
"watch:run": "nyc --reporter html --reporter text-summary --extension .ts --include \"src/**/*.ts\" --exclude \"src/**/*.spec.ts\" mocha --reporter landing --compilers ts:ts-node/register \"src/**/*.spec.ts\" && rimraf .nyc_output",
"lint": "tslint -p tsconfig.json --format codeFrame"
},
"repository": {
"type": "git",
"url": "git+https://github.com/politie/informant.git"
},
"keywords": [
"politie",
"logging",
"typescript"
],
"author": "Dutch National Police",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/politie/informant/issues"
},
"homepage": "https://github.com/politie/informant#readme",
"dependencies": {
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.4",
"@types/sinon": "^7.0.11",
"@types/sinon-chai": "^3.2.2",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"mocha": "^6.1.3",
"nodemon": "^1.18.11",
"nyc": "^13.3.0",
"rimraf": "^2.6.3",
"rollup": "^1.10.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-visualizer": "^1.1.1",
"sinon": "^7.3.1",
"sinon-chai": "^3.3.0",
"ts-node": "^8.1.0",
"tslint": "^5.15.0",
"typescript": "^3.4.3"
}
}