-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 904 Bytes
/
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
{
"name": "cw-log",
"description": "A simple logger for console.",
"version": "0.2.0",
"author": {
"name": "OKUNOKENTARO",
"email": "[email protected]",
"url": "https://github.com/armorik83"
},
"bugs": {
"url": "https://github.com/armorik83/cw-log/issues"
},
"devDependencies": {
"mocha": "^2.1.0",
"rewire": "^2.3.1",
"typescript": "1.4.1"
},
"homepage": "https://github.com/armorik83/cw-log",
"keywords": [
"console",
"debug",
"log",
"logger"
],
"license": "MIT",
"main": "index.js",
"files": [
"index.js",
"lib",
"LICENSE",
"package.json",
"README.md",
"test"
],
"repository": {
"type": "git",
"url": "https://[email protected]/armorik83/cw-log.git"
},
"scripts": {
"build": "tsc src/log.ts --target es5 --module commonjs --outDir lib",
"test": "mocha test/*-spec.js"
}
}