-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.79 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
{
"name": "ptz-log",
"version": "1.2.2",
"description": "Awesome log for javascript",
"main": "dist/index.js",
"typings": "src/index.ts",
"scripts": {
"lint": "tslint ./src/**/*.ts ./src/**/*.test.ts ./src/**/*.d.ts",
"js": "rimraf dist-esnext && tsc && npm run babel",
"tsc:w": "rimraf dist-esnext && tsc -w",
"babel": "rimraf dist && babel dist-esnext -d dist --source-maps",
"babel:w": "rimraf dist && babel dist-esnext --watch -d dist --source-maps",
"pretest": "npm-run-all --parallel js lint",
"mocha": "mocha ./dist/**/*.js --require babel-polyfill",
"mocha:w": "mocha --watch ./dist/**/*.js --require babel-polyfill",
"test": "nyc npm run mocha && nyc report --reporter=text-lcov > coverage.lcov && codecov --token=967f3c1a-c27c-4a43-b22a-c473b5313bf5",
"predebug": "npm run pretest",
"debug": "node --nolazy --debug-brk=5858 dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/polutz/ptz-log.git"
},
"author": "github.com/angeloocana",
"contributors": [
{
"name": "Alan Marcell",
"email": "[email protected]",
"url": "https://alanmarcell.github.io/"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/polutz/ptz-log/issues"
},
"homepage": "https://github.com/polutz/ptz-log#readme",
"devDependencies": {
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.30",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"codecov": "^2.3.0",
"istanbul": "^0.4.5",
"mocha": "^3.5.3",
"mocha-lcov-reporter": "^1.3.0",
"npm-run-all": "^4.1.1",
"nyc": "^11.2.1",
"ptz-assert": "^1.6.8",
"rimraf": "^2.6.2",
"sinon": "^3.3.0",
"tslint": "^5.7.0",
"typescript": "^2.5.2"
},
"dependencies": {
"moment": "^2.18.1"
}
}