-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.73 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
72
73
{
"name": "@avine/ns-logger",
"version": "1.0.5",
"description": "Logger with namespace support for node and browser",
"main": "index.js",
"scripts": {
"lint": "tslint --project tsconfig.json",
"test:base": "mocha --require ts-node/register src/**/*.test.ts",
"test": "nyc mocha",
"build:node": "tsc",
"build:browser": "node expose-global.js",
"build": "npm run build:node && npm run build:browser",
"all": "npm run lint && npm test && npm run build",
"start": "http-server ./docs -a 127.0.0.1 -p 9000 -o -c-1",
"deploy": "npm publish ./ --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/avine/ns-logger.git"
},
"keywords": [
"log",
"logger",
"logging",
"node",
"browser",
"module",
"namespace",
"typescript"
],
"author": "Stéphane Francel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/avine/ns-logger/issues"
},
"homepage": "https://github.com/avine/ns-logger#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/sinon": "^5.0.7",
"@types/sinon-chai": "^3.2.1",
"@types/uglify-es": "^3.0.0",
"chai": "^4.2.0",
"http-server": "^0.11.1",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"sinon": "^7.2.2",
"sinon-chai": "^3.3.0",
"source-map-support": "^0.5.9",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.2.2",
"uglify-es": "^3.3.9"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.test.ts"
],
"extension": [
".ts"
],
"reporter": [
"text-summary",
"html"
]
},
"dependencies": {
"chalk": "^2.4.1"
}
}