-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.88 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
{
"name": "ptz-core-domain",
"version": "2.1.2",
"description": "Polutz Core Domain.",
"main": "./dist/index.js",
"typings": "./src/index.ts",
"scripts": {
"lint": "tslint ./src/**/*.ts ./src/**/*.test.ts ./src/**/*.d.ts",
"js": "rimraf dist-esnext && tsc && rimraf dist && babel dist-esnext -d dist --source-maps",
"pretest": "npm-run-all --parallel js lint",
"mocha": "mocha ./dist/**/*.js --require babel-polyfill",
"test": "nyc npm run mocha && nyc report --reporter=html --reporter=text-lcov > coverage.lcov && codecov --token=cbef0920-fdc4-4cc3-8d52-51a0298afea3 ",
"test:cover": "npm run test && opn ./coverage/index.html",
"predebug": "npm run pretest",
"debug": "node --nolazy --debug-brk=5858 dist/index.js",
"docs:build": "typedoc --out ./docs ./ --includeDeclarations --excludeExternals --exclude '**/*.test.ts'",
"docs": "npm run docs:build && opn ./docs/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/polutz/ptz-core-domain.git"
},
"author": "angeloocana.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/polutz/ptz-core-domain/issues"
},
"homepage": "https://github.com/polutz/ptz-core-domain#readme",
"devDependencies": {
"@types/mocha": "^2.2.42",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"codecov": "^2.3.0",
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"mocha-lcov-reporter": "^1.3.0",
"npm-run-all": "^4.1.0",
"nyc": "^11.1.0",
"opn-cli": "^3.1.0",
"ptz-assert": "^1.6.8",
"rimraf": "^2.6.1",
"sinon": "^3.2.1",
"tslint": "^5.7.0",
"typedoc": "^0.8.0",
"typescript": "^2.4.2"
},
"dependencies": {
"@types/mongodb": "^2.2.10",
"@types/node": "^8.0.25",
"@types/shortid": "0.0.29",
"ptz-fp": "^1.2.0",
"ptz-validations": "^3.0.1",
"ramda": "^0.24.1",
"shortid": "^2.2.8"
}
}