-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.24 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
{
"name": "log4ui",
"version": "{{version}}",
"description": "Logger implemented especially to run in browser",
"scripts": {
"compile": "tsc -p tsconfig.prod.json",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "nyc mocha test/**/*.spec.ts"
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"sourceMap": true,
"instrument": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mamoru1234/log4ui.git"
},
"keywords": [
"log"
],
"author": "Alexei Gontar",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mamoru1234/log4ui/issues"
},
"homepage": "https://github.com/Mamoru1234/log4ui#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/sinon": "^7.0.13",
"@types/sinon-chai": "^3.2.2",
"chai": "^4.2.0",
"coveralls": "^3.0.4",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"rimraf": "^2.6.3",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
},
"dspm": {
"plugins": [
"jsProject", "npm"
]
}
}