-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "loggerage",
"version": "2.3.2",
"description": "loggerage is a logger for Javascript that save the registry directly in the localStorage (or your own Storage)",
"author": "lmfresneda <loggerage@gmail.com>",
"main": "./build/loggerage.js",
"keywords": [
"log",
"logger",
"storage",
"localStorage",
"js",
"javascript"
],
"scripts": {
"test": "npm run build && mocha test",
"coverage": "istanbul cover _mocha test",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"build": "rimraf build && tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/lmfresneda/loggerage.git"
},
"bugs": {
"url": "https://github.com/lmfresneda/loggerage/issues"
},
"typings": "./build/loggerage.d.ts",
"license": "MIT",
"homepage": "http://lmfresneda.github.io/loggerage/",
"dependencies": {
"array-includes": "^3.0.3",
"colors": "^1.1.2",
"moment": "^2.18.1",
"object-assign": "^4.1.1"
},
"devDependencies": {
"@types/es6-promise": "0.0.32",
"coveralls": "^2.13.1",
"expect.js": "^0.3.1",
"istanbul": "^0.4.5",
"localStorage": "^1.0.3",
"mocha": "^2.4.5",
"promisify-node": "^0.4.0"
}
}